Skip to content

Commit 981fe2b

Browse files
authored
[general] Added Python 3.11 support (#1196)
1 parent 04676b5 commit 981fe2b

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

.github/workflows/ci.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
strategy:
1616
matrix:
1717
os: [ubuntu-20.04]
18-
python-version: ["3.7", "3.8", "3.9", "3.10"]
18+
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11"]
1919
django-version: ["3.2", "4.0", "4.1", "main"]
2020
exclude:
2121
- python-version: "3.7"
@@ -24,6 +24,10 @@ jobs:
2424
django-version: "4.1"
2525
- python-version: "3.7"
2626
django-version: "main"
27+
- python-version: "3.11"
28+
django-version: "3.2"
29+
- python-version: "3.11"
30+
django-version: "4.0"
2731

2832
steps:
2933
- uses: actions/checkout@v2

setup.cfg

+1
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ classifiers =
2424
Programming Language :: Python :: 3.8
2525
Programming Language :: Python :: 3.9
2626
Programming Language :: Python :: 3.10
27+
Programming Language :: Python :: 3.11
2728

2829
[options]
2930
zip_safe=False

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ minversion = 1.9
33
envlist =
44
py{3.7,3.8,3.9,3.10}-django3.2
55
py{3.8,3.9,3.10}-django4.0
6-
py{3.8,3.9,3.10}-django4.1
7-
py{3.8,3.9,3.10}-djangomain
6+
py{3.8,3.9,3.10,3.11}-django4.1
7+
py{3.8,3.9,3.10,3.11}-djangomain
88
flake8
99

1010
[testenv]

0 commit comments

Comments
 (0)