Skip to content

Commit 62e3de0

Browse files
committed
Add Python 3.11 and Django 4.1 support
1 parent 359c88c commit 62e3de0

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
strategy:
2727
fail-fast: false
2828
matrix:
29-
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "pypy3"]
29+
python-version: ["3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "pypy3"]
3030
experimental: [false]
3131
include:
3232
- python-version: "3.10"

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,15 @@
4343
'Programming Language :: Python :: 3.8',
4444
'Programming Language :: Python :: 3.9',
4545
'Programming Language :: Python :: 3.10',
46+
'Programming Language :: Python :: 3.11',
4647
'Framework :: Django',
4748
'Framework :: Django :: 2.1',
4849
'Framework :: Django :: 2.2',
4950
'Framework :: Django :: 3.0',
5051
'Framework :: Django :: 3.1',
5152
'Framework :: Django :: 3.2',
5253
'Framework :: Django :: 4.0',
54+
'Framework :: Django :: 4.1',
5355

5456
'Environment :: Web Environment',
5557
'Intended Audience :: Developers',

tox.ini

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@ envlist =
55
py36-dj{30,31},
66
py37-dj{30,31,32},
77
py{38,39}-dj{30,31,32,40},
8-
py310-dj{32,40},
8+
py310-dj{32,40,41},
9+
py311-dj41,
910
pypy3-dj{30,31,32}
1011

1112
[gh-actions]
@@ -33,9 +34,10 @@ deps =
3334
dj31: Django>=3.1,<3.2
3435
dj32: Django>=3.2,<3.3
3536
dj40: Django>=4.0,<4.1
37+
dj41: Django>=4.1,<4.2
3638
djmaster: git+https://github.com/django/django
3739
mysqlclient
38-
py{35,36,37,38,39,310}: psycopg2-binary
40+
py{35,36,37,38,39,310,311}: psycopg2-binary
3941
; gdal=={env:GDAL_VERSION:2.4}
4042
pypy3: psycopg2cffi>=2.7.6
4143
before_after==1.0.0

0 commit comments

Comments
 (0)