Add support for Python 3.13

This commit is contained in:
Bruno Alla 2024-09-10 18:57:34 +01:00
parent 61e33761eb
commit 6f80b58220
No known key found for this signature in database
4 changed files with 4 additions and 1 deletions

View File

@ -19,6 +19,7 @@ jobs:
- '3.10' - '3.10'
- '3.11' - '3.11'
- '3.12' - '3.12'
- '3.13-dev'
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4

View File

@ -88,7 +88,7 @@ continued development by **[signing up for a paid plan][funding]**.
REST framework requires the following: REST framework requires the following:
* Django (4.2, 5.0, 5.1) * Django (4.2, 5.0, 5.1)
* Python (3.8, 3.9, 3.10, 3.11, 3.12) * Python (3.8, 3.9, 3.10, 3.11, 3.12, 3.13)
We **highly recommend** and only officially support the latest patch release of We **highly recommend** and only officially support the latest patch release of
each Python and Django series. each Python and Django series.

View File

@ -102,6 +102,7 @@ setup(
'Programming Language :: Python :: 3.10', 'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12', 'Programming Language :: Python :: 3.12',
'Programming Language :: Python :: 3.13',
'Programming Language :: Python :: 3 :: Only', 'Programming Language :: Python :: 3 :: Only',
'Topic :: Internet :: WWW/HTTP', 'Topic :: Internet :: WWW/HTTP',
], ],

View File

@ -4,6 +4,7 @@ envlist =
{py310}-{django42,django50,django51,djangomain} {py310}-{django42,django50,django51,djangomain}
{py311}-{django42,django50,django51,djangomain} {py311}-{django42,django50,django51,djangomain}
{py312}-{django42,django50,django51,djangomain} {py312}-{django42,django50,django51,djangomain}
{py313}-{django51,djangomain}
base base
dist dist
docs docs