1
0

Compare commits

..

No commits in common. "a8a44ed1d42405e70d26a0c6e61de12528ed27d5" and "c82d0670afc83635c468003404d8ba8e761f1ee3" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -1 +1 @@
__version__ = '0.1.38'
__version__ = '0.1.37'

View File

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