Skip to content

Commit

Permalink
Fixed packaging problem.
Browse files Browse the repository at this point in the history
  • Loading branch information
Paebbels committed Jan 10, 2024
1 parent 7759dd2 commit 1475e2c
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion run.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ if ($install)
{ Write-Host -ForegroundColor Cyan "[ADMIN][UNINSTALL] Uninstalling $PackageName ..."
py -3.12 -m pip uninstall -y $PackageName
Write-Host -ForegroundColor Cyan "[ADMIN][INSTALL] Installing $PackageName from wheel ..."
py -3.12 -m pip install .\dist\$PackageName-0.3.0-py3-none-any.whl
py -3.12 -m pip install .\dist\$PackageName-0.3.1-py3-none-any.whl

Write-Host -ForegroundColor Cyan "[ADMIN][INSTALL] Closing window in 5 seconds ..."
Start-Sleep -Seconds 5
Expand Down
3 changes: 2 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
description="A Sphinx extension providing coverage details embedded in documentation pages.",
gitHubNamespace=gitHubNamespace,
sourceFileWithVersion=packageInformationFile,
classifiers=DEFAULT_CLASSIFIERS + [
classifiers=list(DEFAULT_CLASSIFIERS) + [
"Framework :: Sphinx",
"Framework :: Sphinx :: Domain",
"Framework :: Sphinx :: Extension",
Expand All @@ -51,6 +51,7 @@
"Topic :: Software Development :: Quality Assurance",
],
developmentStatus="beta",
pythonVersions=("3.9", "3.10", "3.11", "3.12"),
dataFiles={
"sphinx_reports": ["static/*.css"]
}
Expand Down
2 changes: 1 addition & 1 deletion sphinx_reports/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
__email__ = "[email protected]"
__copyright__ = "2023-2024, Patrick Lehmann"
__license__ = "Apache License, Version 2.0"
__version__ = "0.3.0"
__version__ = "0.3.1"
__keywords__ = ["Python3", "Sphinx", "Extension", "Report", "doc-string", "interrogate"]

from hashlib import md5
Expand Down

0 comments on commit 1475e2c

Please sign in to comment.