diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 21db71fb..5d2c228b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -28,7 +28,7 @@ jobs: fail-fast: false max-parallel: 5 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 bf011c47..f6fd2f2e 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", "Programming Language :: Python :: Implementation :: CPython", "Topic :: Utilities", ] diff --git a/tox.ini b/tox.ini index 4f95cfde..a34d9cfc 100644 --- a/tox.ini +++ b/tox.ini @@ -3,7 +3,7 @@ isolated_build = true envlist = py{38,39,310,311,312}-dj{42}-{unittest,pytest,checkmigrations} py{310,311,312}-dj{50}-{unittest,pytest,checkmigrations} - py{310,311,312}-dj{main}-{unittest,pytest,checkmigrations} + py{310,311,312,313}-dj{main}-{unittest,pytest,checkmigrations} skip_missing_interpreters = True [testenv] @@ -38,3 +38,4 @@ python = 3.10: py310 3.11: py311 3.12: py312 + 3.13: py313