From 380fa484d006adef72716c823934faeb4fde68d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=9Clgen=20Sar=C4=B1kavak?= Date: Sun, 10 Nov 2024 21:06:53 +0300 Subject: [PATCH] [improvement] Add support for Python 3.13 (#523) --- .github/workflows/python-package.yml | 2 +- pyproject.toml | 1 + tox.ini | 2 ++ 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 91a2d18b..604823a8 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: false matrix: - python-version: [ 3.8, 3.9, '3.10', 3.11, 3.12 ] + python-version: [ 3.8, 3.9, '3.10', 3.11, 3.12, 3.13 ] steps: - uses: actions/checkout@v4 diff --git a/pyproject.toml b/pyproject.toml index 14068107..0b67f54d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -31,6 +31,7 @@ classifiers = [ "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", + "Programming Language :: Python :: 3.13", "Topic :: Software Development :: Libraries :: Python Modules", ] requires-python = ">=3.8" diff --git a/tox.ini b/tox.ini index 5023d2e8..48a208c0 100644 --- a/tox.ini +++ b/tox.ini @@ -4,6 +4,7 @@ envlist = py{310}-django{32,40,41,42,50,51} py{311}-django{41,42,50,51} py{312}-django{42,50,51} + py{313}-django{51} isolated_build = True [gh-actions] @@ -13,6 +14,7 @@ python = 3.10: py310 3.11: py311 3.12: py312 + 3.13: py313 [testenv] allowlist_externals = ./run.sh