Skip to content

Commit aa0650a

Browse files
committed
Fix Python 3.11 compability matris
1 parent 49816bd commit aa0650a

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/workflows/tests.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,12 @@ jobs:
99
max-parallel: 4
1010
matrix:
1111
django: ["3.2", "4.0", "4.1"]
12-
python-version: ["3.8", "3.9", "3.10", "3.11"]
12+
python-version: ["3.8", "3.9", "3.10"]
1313
include:
1414
- django: "3.2"
1515
python-version: "3.7"
16+
- django: "4.1"
17+
python-version: "3.11"
1618
steps:
1719
- uses: actions/checkout@v3
1820
- name: Set up Python ${{ matrix.python-version }}

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
[tox]
22
envlist =
3-
py{37,38,39,310,311}-django32,
4-
py{38,39,310,311}-django{40,41,main},
3+
py{37,38,39,310}-django32,
4+
py{38,39,310}-django{40,41,main},
5+
py311-django{41,main}
56
pre-commit
67

78
[gh-actions]

0 commit comments

Comments
 (0)