From 65f2bfe22cc17fa03118cf6f96e0e1599036977b Mon Sep 17 00:00:00 2001 From: Vadim Nifadev <36514612+nifadyev@users.noreply.github.com> Date: Fri, 27 Sep 2024 16:47:33 +0300 Subject: [PATCH 1/3] Add Python 3.13 support --- .github/workflows/pr.yml | 2 +- noxfile.py | 2 +- pyproject.toml | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 0e24a76..801ec9c 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ["3.8", "3.9", "3.10", "3.11", "3.12"] + python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-candidate-2"] steps: - uses: actions/checkout@v4 diff --git a/noxfile.py b/noxfile.py index 6a8412a..0805d75 100644 --- a/noxfile.py +++ b/noxfile.py @@ -6,7 +6,7 @@ if TYPE_CHECKING: from nox.sessions import Session -python_versions = ["3.8", "3.9", "3.10", "3.11", "3.12"] +python_versions = ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"] @nox.session(python=python_versions, reuse_venv=True) def tests(session: "Session") -> None: diff --git a/pyproject.toml b/pyproject.toml index 69a2903..f724ad3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -21,6 +21,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Typing :: Typed", ] From 4a43035fb190a5537bc75b1f5132f61bd90f2f2c Mon Sep 17 00:00:00 2001 From: Vadim Nifadev <36514612+nifadyev@users.noreply.github.com> Date: Fri, 27 Sep 2024 16:49:48 +0300 Subject: [PATCH 2/3] Fix python version in CI --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 801ec9c..6050fd4 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-candidate-2"] + python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-rc.2"] steps: - uses: actions/checkout@v4 From 9dfdb5ace5b4ffdccc00cbe902f4af741bb87a06 Mon Sep 17 00:00:00 2001 From: Vadim Nifadev <36514612+nifadyev@users.noreply.github.com> Date: Fri, 27 Sep 2024 16:51:26 +0300 Subject: [PATCH 3/3] Another version fix --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 6050fd4..0eda5fd 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13-rc.2"] + python: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-rc.2"] steps: - uses: actions/checkout@v4