Compare commits

..

No commits in common. "6a954de6e22955b4a291580adbe312e760e466b5" and "7c88c98839b62e9590ac97652d9025b167d025d7" 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

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