Compare commits

..

No commits in common. "d5f0e9f32459a059297a779b342d466e018f27fa" and "d30b52879bad951325d7afa2a278e2dcb2aa6458" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -1 +1 @@
__version__ = '0.1.11' __version__ = '0.1.10'

View File

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