Initial ruff pass
Some checks failed
Run Python tests (through Pytest) / Test (push) Failing after 25s
Verify Python project can be installed, loaded and have version checked / Test (push) Successful in 23s

This commit is contained in:
Jon Michael Aanes 2025-06-09 18:48:57 +02:00
parent 0497fd3e26
commit 0327d22d7f

View File

@ -174,6 +174,7 @@ def find_python_packages() -> list[str]:
print(f'Found following packages: {packages}')
return sorted(packages)
with open(PACKAGE_NAME + '/_version.py') as f:
version = parse_version_file(f.read())