Skip to content

Commit 4aad2f1

Browse files
committed
rolling RC0
1 parent 2e10923 commit 4aad2f1

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pyproject.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ lint.unfixable = [
6060
lint.mccabe.max-complexity = 10
6161
# Use Google-style docstrings.
6262
lint.pydocstyle.convention = "google"
63-
lint.ignore-init-module-imports = true
6463

6564
[tool.codespell]
6665
#skip = '*.py'

setup.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,9 @@ def _load_readme_description(path_dir: str, homepage: str, version: str) -> str:
6565
license=ABOUT.__license__,
6666
package_dir={"": "src"},
6767
packages=find_packages(where="src"),
68-
long_description=_load_readme_description(_PATH_ROOT, homepage=ABOUT.__source_code__, version=ABOUT.__version__),
68+
long_description=_load_readme_description(
69+
_PATH_ROOT, homepage=ABOUT.__source_code__, version=f"v{ABOUT.__version__}"
70+
),
6971
long_description_content_type="text/markdown",
7072
include_package_data=True,
7173
zip_safe=False,

0 commit comments

Comments
 (0)