From c7b42e3944254c97ba915905c7ca4f02daaa5edb Mon Sep 17 00:00:00 2001 From: Bruno Alla Date: Wed, 16 Oct 2024 19:15:09 +0100 Subject: [PATCH] Add Python 3.13 support --- .github/workflows/test.yml | 1 + pyproject.toml | 1 + tox.ini | 2 +- 3 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 49fa8d2..48bad88 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,6 +28,7 @@ jobs: - "3.10" - "3.11" - "3.12" + - "3.13" steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v5 diff --git a/pyproject.toml b/pyproject.toml index 474b957..9128594 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -20,6 +20,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Programming Language :: Python :: 3 :: Only", "Framework :: Django", "Framework :: Django :: 4.2", diff --git a/tox.ini b/tox.ini index 917f56d..8c84552 100644 --- a/tox.ini +++ b/tox.ini @@ -2,7 +2,7 @@ envlist = py{39,310,311}-dj42 py{310,311,312}-dj50 - py{310,311,312}-dj51 + py{310,311,312,313}-dj51 skipsdist = True [testenv]