diff --git a/.github/workflows/ci-tests.yml b/.github/workflows/ci-tests.yml index ba7ccce..0662dc3 100644 --- a/.github/workflows/ci-tests.yml +++ b/.github/workflows/ci-tests.yml @@ -33,6 +33,7 @@ jobs: '3.11', '3.12', '3.13', + '3.14', 'pypy3.9', 'pypy3.10', ] diff --git a/README.rst b/README.rst index 5a4f5d5..5413832 100644 --- a/README.rst +++ b/README.rst @@ -49,7 +49,7 @@ in our documentation_. **routingpy** is tested against: -- CPython versions 3.9, 3.10, 3.11, 3.12 and 3.13, +- CPython versions 3.9, 3.10, 3.11, 3.12, 3.13 and 3.14, - PyPy3 versions 3.9 and 3.10. © routingpy contributors 2022 under the `Apache 2.0 License`_. diff --git a/pyproject.toml b/pyproject.toml index 0f6a405..15ab6b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -37,6 +37,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Programming Language :: Python :: Implementation :: CPython", "Programming Language :: Python :: Implementation :: PyPy", ] diff --git a/routingpy/__init__.py b/routingpy/__init__.py index 05906ac..53af540 100644 --- a/routingpy/__init__.py +++ b/routingpy/__init__.py @@ -23,7 +23,8 @@ more info, please look at our `README`_). Take a look at our `Examples`_ to see how simple you can compare routes from different providers. -**routingpy** is tested against CPython 3.9, 3.10, 3.11, 3.12 and 3.13 and PyPy3 version 3.9 and 3.10. +**routingpy** is tested against CPython 3.9, 3.10, 3.11, 3.12, 3.13 and 3.14 as well as +PyPy3 version 3.9 and 3.10. .. _`README`: https://github.com/mthh/routingpy#api .. _`Examples`: https://github.com/mthh/routingpy#examples