1
0

Compare commits

...

2 Commits

Author SHA1 Message Date
985626cb9a 🤖 Bumped version to 0.1.75
Some checks failed
Build Python Container / release-image (push) Failing after 41s
Package Python / Package-Python-And-Publish (push) Successful in 56s
Run Python tests (through Pytest) / Test (push) Failing after 28s
Verify Python project can be installed, loaded and have version checked / Test (push) Failing after 26s
This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager)
2025-07-07 00:48:16 +02:00
1646ceb05d 🤖 Repository layout updated to latest version
This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager)
2025-07-07 00:41:07 +02:00
2 changed files with 5 additions and 4 deletions

View File

@ -1 +1 @@
__version__ = '0.1.74' __version__ = '0.1.75'

View File

@ -66,9 +66,11 @@ def parse_version_file(text: str) -> str:
def find_python_packages() -> list[str]: def find_python_packages() -> list[str]:
"""Find all python packages (directories containing __init__.py files).""" """
Find all python packages. (Directories containing __init__.py files.)
"""
root_path = Path(PACKAGE_NAME) root_path = Path(PACKAGE_NAME)
packages: set[str] = {PACKAGE_NAME} packages: set[str] = set([PACKAGE_NAME])
# Search recursively # Search recursively
for init_file in root_path.rglob('__init__.py'): for init_file in root_path.rglob('__init__.py'):
@ -76,7 +78,6 @@ def find_python_packages() -> list[str]:
return sorted(packages) return sorted(packages)
with open(PACKAGE_NAME + '/_version.py') as f: with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(f.read()) version = parse_version_file(f.read())