From ec7dfdbbebaaa406db37326e799a1c8218bd0163 Mon Sep 17 00:00:00 2001 From: Szymon Wlodarski Date: Tue, 2 Dec 2025 15:49:32 +0100 Subject: [PATCH] #200 Add support for Python 3.14 --- .github/workflows/build.yml | 4 ++-- pyproject.toml | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 250429e..052aa9b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -29,8 +29,8 @@ jobs: runs-on: ubuntu-latest strategy: - matrix: - python-version: [3.9, '3.10', 3.11, 3.12, 3.13] + matrix: + python-version: [3.9, "3.10", 3.11, 3.12, 3.13, 3.14] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index c315f28..1e686b1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,6 +23,7 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Programming Language :: Python :: 3.13", + "Programming Language :: Python :: 3.14", "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "Natural Language :: English",