From 5d4f0bb18e117c99d31c857fb974865196b79104 Mon Sep 17 00:00:00 2001 From: Steinar Hjellvik Date: Wed, 24 Jun 2026 13:50:42 +0200 Subject: [PATCH] =?UTF-8?q?Expand=20Python=20version=20coverage=20to=203.1?= =?UTF-8?q?0=E2=80=933.14?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit requires-python was already >=3.10, but the 3.14 trove classifier was missing and CI only exercised a single interpreter (3.14). Verified the full suite (codegen via datamodel-code-generator + 2196 tests) passes on 3.10, 3.11, 3.12, 3.13 and 3.14. - Add Programming Language :: Python :: 3.14 classifier - Run the build-and-test workflow as a matrix across 3.10–3.14 Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- .github/workflows/build-and-test.yml | 6 +++++- pyproject.toml | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 6d4122f..d529453 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -12,6 +12,10 @@ jobs: build: name: Build and test runs-on: ubuntu-latest + strategy: + fail-fast: false + matrix: + python-version: ["3.10", "3.11", "3.12", "3.13", "3.14"] permissions: contents: read steps: @@ -23,7 +27,7 @@ jobs: - name: Set up uv uses: astral-sh/setup-uv@fac544c07dec837d0ccb6301d7b5580bf5edae39 # v8.2.0 with: - python-version: "3.14" + python-version: ${{ matrix.python-version }} - name: Install run: | diff --git a/pyproject.toml b/pyproject.toml index d1dc6c4..d31ef20 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -16,6 +16,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Software Development :: Libraries", "Typing :: Typed", ]