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"