From 1475e2c81e40ca94b691e94bbfe20cea4ea1d9b6 Mon Sep 17 00:00:00 2001 From: Patrick Lehmann Date: Wed, 10 Jan 2024 19:02:32 +0100 Subject: [PATCH] Fixed packaging problem. --- run.ps1 | 2 +- setup.py | 3 ++- sphinx_reports/__init__.py | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/run.ps1 b/run.ps1 index 48ab2771..e1288948 100644 --- a/run.ps1 +++ b/run.ps1 @@ -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 diff --git a/setup.py b/setup.py index 0408aa2e..86bd1614 100644 --- a/setup.py +++ b/setup.py @@ -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", @@ -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"] } diff --git a/sphinx_reports/__init__.py b/sphinx_reports/__init__.py index 9194dbfb..c43056f6 100644 --- a/sphinx_reports/__init__.py +++ b/sphinx_reports/__init__.py @@ -43,7 +43,7 @@ __email__ = "Paebbels@gmail.com" __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