From fdb647f93e3e1b2bacdb0df6abee6d6e126f379e Mon Sep 17 00:00:00 2001 From: Chris Mayo Date: Mon, 19 Aug 2024 19:35:27 +0100 Subject: [PATCH 1/2] Test with Python 3.13 --- .github/workflows/build.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index d231cdc..14861a7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,6 +24,7 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" steps: - name: Git clone @@ -41,6 +42,7 @@ jobs: uses: actions/setup-python@v5 with: python-version: "${{ matrix.python-version }}" + allow-prereleases: true - name: Pip cache uses: actions/cache@v4 From 4fab35855771ec8364f5ed06fe028a29571f72ee Mon Sep 17 00:00:00 2001 From: Chris Mayo Date: Mon, 19 Aug 2024 19:35:27 +0100 Subject: [PATCH 2/2] Add Python 3.13 to supported versions --- pyproject.toml | 1 + tox.ini | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 87bd7d3..16d05ce 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -14,6 +14,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", ] requires-python = ">=3.9" diff --git a/tox.ini b/tox.ini index a708798..1e99877 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py3{9,10,11,12} +envlist = py3{9,10,11,12,13} [base] deps =