From a061f05dbdb11030fd62c3e63e978ef0f13d6dfc Mon Sep 17 00:00:00 2001 From: hfdrake Date: Tue, 17 Feb 2026 20:06:56 -0800 Subject: [PATCH 1/2] Drop direct references in pyproject.toml dependencies --- pyproject.toml | 3 --- sectionate/version.py | 2 +- 2 files changed, 1 insertion(+), 4 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 2e11f95..0a0cf1a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,9 +31,6 @@ dependencies = [ requires = ["hatchling"] build-backend = "hatchling.build" -[tool.hatch.metadata] -allow-direct-references = true - [tool.hatch.version] path = "sectionate/version.py" diff --git a/sectionate/version.py b/sectionate/version.py index 3c04d5a..c4589c1 100644 --- a/sectionate/version.py +++ b/sectionate/version.py @@ -1,3 +1,3 @@ """sectionate: version information""" -__version__ = "0.3.2" +__version__ = "0.3.3" From 8294b52d7c38a6a7ddf9ce7d9cf398464291e961 Mon Sep 17 00:00:00 2001 From: hfdrake Date: Tue, 17 Feb 2026 20:11:15 -0800 Subject: [PATCH 2/2] CI test on 3.11 --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 61ecfb5..01237d5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: ['3.12', '3.13', '3.14'] + python-version: ['3.11', '3.12', '3.13', '3.14'] steps: - name: Cancel previous runs