1
0

Compare commits

..

No commits in common. "30b240f79b5ce7a7657e9f06a55f5cdf1a8e4864" and "ada5149db1b667b8df1893ff16c67a3ff3d56fdc" have entirely different histories.

2 changed files with 2 additions and 1 deletions

View File

@ -1 +1 @@
__version__ = '0.1.14'
__version__ = '0.1.13'

View File

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