From fc664003a3ce0986c91709bc376eadac84c3826d Mon Sep 17 00:00:00 2001 From: "sam@samr1.net" Date: Sat, 14 Mar 2026 12:19:09 +0100 Subject: [PATCH] add support for Python 3.14 --- .github/workflows/.tests-python.yml | 6 +++--- pyproject.toml | 1 + 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/.tests-python.yml b/.github/workflows/.tests-python.yml index d64580a..6524e7d 100644 --- a/.github/workflows/.tests-python.yml +++ b/.github/workflows/.tests-python.yml @@ -12,7 +12,7 @@ jobs: container: python:${{ matrix.python-version }} strategy: matrix: - python-version: [ "3.10", "3.11", "3.12", "3.13" ] + python-version: [ "3.10", "3.11", "3.12", "3.13", "3.14" ] steps: - uses: actions/checkout@v4 @@ -24,11 +24,11 @@ jobs: poetry install --no-interaction --quiet --all-extras - name: Lint - if: matrix.python-version == '3.13' + if: matrix.python-version == '3.14' run: ruff check staticmap3 - name: Type check - if: matrix.python-version == '3.13' + if: matrix.python-version == '3.14' run: mypy staticmap3 - name: Run unit tests diff --git a/pyproject.toml b/pyproject.toml index 5b7f1c8..3358b81 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -19,6 +19,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", ] requires-python = ">=3.10"