1
0

Compare commits

..

No commits in common. "ff71f693557e54eb9ab15eb2619691a0a953397c" and "ec3d0a2a121fb30d8238511c738f16d9fc1e4f0e" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

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

View File

@ -39,6 +39,7 @@ 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: