From f5fb46de6cd9fe9a76d52f20372143b8742fc87a Mon Sep 17 00:00:00 2001 From: Nic Jones Date: Sat, 21 Mar 2026 15:25:03 -0400 Subject: [PATCH] Allow python down to 3.12 --- pyproject.toml | 10 ++++++++-- src/watfag/__init__.py | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 78d4fb5..7807b63 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,18 +1,24 @@ [build-system] -requires = ["hatchling>=1.27.0"] +requires = ["hatchling>=1.29.0"] build-backend = "hatchling.build" [project] name = "watfag" dynamic = ["version"] description = "Searches torrents with Jackett and scores them with WATFAG" -requires-python = ">=3.14" +requires-python = ">=3.12" dependencies = [ "feedparser>=6.0.12", "httpx>=0.28.1", "regex>=2026.2.28", ] +[dependency-groups] +dev = [ + "hatch>=1.16.5", + "hatchling>=1.29.0", +] + [tool.hatch.build.targets.wheel] packages = [ "src/watfag", diff --git a/src/watfag/__init__.py b/src/watfag/__init__.py index 976498a..92192ee 100644 --- a/src/watfag/__init__.py +++ b/src/watfag/__init__.py @@ -1 +1 @@ -__version__ = "1.0.3" +__version__ = "1.0.4"