Compare commits

..

2 Commits

Author SHA1 Message Date
6a954de6e2 🤖 Bumped version to 0.1.34
All checks were successful
Package Python / Package-Python-And-Publish (push) Successful in 26s
Run Python tests (through Pytest) / Test (push) Successful in 25s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 22s
This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager)
2025-07-07 00:41:45 +02:00
767d35b8c3 🤖 Repository layout updated to latest version
This commit was automatically generated by [a script](https://gitfub.space/Jmaa/repo-manager)
2025-06-13 23:59:24 +02:00
2 changed files with 1 additions and 2 deletions

View File

@ -1 +1 @@
__version__ = '0.1.33'
__version__ = '0.1.34'

View File

@ -73,7 +73,6 @@ def find_python_packages() -> list[str]:
for init_file in root_path.rglob('__init__.py'):
packages.add(str(init_file.parent).replace('/', '.'))
print(f'Found following packages: {packages}')
return sorted(packages)
with open(PACKAGE_NAME + '/_version.py') as f: