diff --git a/.github/workflows/code-checks.yaml b/.github/workflows/code-checks.yaml index af19ecc..d914172 100644 --- a/.github/workflows/code-checks.yaml +++ b/.github/workflows/code-checks.yaml @@ -14,7 +14,7 @@ jobs: runs-on: ubuntu-latest 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: diff --git a/ChangeLog.md b/ChangeLog.md index 9fa6632..9a13a8f 100644 --- a/ChangeLog.md +++ b/ChangeLog.md @@ -6,6 +6,8 @@ - Migrated from `rye` to `uv` for development management. ([#25](https://github.com/davep/complexitty/pull/25)) +- Added Python 3.14 as a tested/supported Python version. + ([#27](https://github.com/davep/complexitty/pull/27)) ## v0.3.0 diff --git a/pyproject.toml b/pyproject.toml index 9964802..493c254 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -32,6 +32,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Topic :: Terminals", "Typing :: Typed", ]