Skip to content

Commit 65da2bd

Browse files
authored
Add support for Python 3.13 and Django 5.1/5.2 (#186)
* Update tests.yml * Update setup.cfg
1 parent 0d8cb67 commit 65da2bd

File tree

2 files changed

+19
-2
lines changed

2 files changed

+19
-2
lines changed

.github/workflows/tests.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,31 @@ jobs:
1212
runs-on: ubuntu-latest
1313
strategy:
1414
matrix:
15-
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
16-
django-version: ["3.2", "4.2", "5.0"]
15+
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
16+
django-version: ["3.2", "4.2", "5.0", "5.1", "5.2"]
1717
exclude:
1818
- python-version: 3.11
1919
django-version: 3.2
2020
- python-version: 3.12
2121
django-version: 3.2
22+
- python-version: 3.13
23+
django-version: 3.2
24+
- python-version: 3.13
25+
django-version: 4.2
26+
- python-version: 3.13
27+
django-version: 5.0
2228
- python-version: 3.8
2329
django-version: 5.0
2430
- python-version: 3.9
2531
django-version: 5.0
32+
- python-version: 3.8
33+
django-version: 5.1
34+
- python-version: 3.9
35+
django-version: 5.1
36+
- python-version: 3.8
37+
django-version: 5.2
38+
- python-version: 3.9
39+
django-version: 5.2
2640

2741
steps:
2842
- uses: actions/checkout@v4

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,12 @@ classifiers =
2424
Programming Language :: Python :: 3.10
2525
Programming Language :: Python :: 3.11
2626
Programming Language :: Python :: 3.12
27+
Programming Language :: Python :: 3.13
2728
Framework :: Django :: 3.2
2829
Framework :: Django :: 4.2
2930
Framework :: Django :: 5.0
31+
Framework :: Django :: 5.1
32+
Framework :: Django :: 5.2
3033

3134
[options]
3235
packages = find:

0 commit comments

Comments
 (0)