From b10269f66bf2fd1bbf6d22565cc7e3cf64c1fea5 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Mon, 9 Jun 2025 14:55:20 +0200 Subject: [PATCH] Initial ruff pass --- setup.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.py b/setup.py index e971bea..b1c83e0 100644 --- a/setup.py +++ b/setup.py @@ -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())