From 832bb09e6426a61626e0f5770bace8fceb7dc4b1 Mon Sep 17 00:00:00 2001 From: Jon Michael Aanes Date: Mon, 9 Jun 2025 15:47:57 +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())