Skip to content

Commit 5214119

Browse files
committed
Add support for Django 4.1
1 parent 8931c88 commit 5214119

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,34 +49,35 @@ jobs:
4949
python-version:
5050
- "3.10"
5151
django-version:
52-
- "3.2"
52+
- "3.2" # LTS
5353
- "4.0"
54+
- "4.1"
5455
extras:
5556
- "test"
5657
include:
5758
- os: "macos-latest"
5859
python-version: "3.10"
59-
django-version: "4.0"
60+
django-version: "3.2"
6061
extras: "test"
6162
- os: "windows-latest"
6263
python-version: "3.10"
63-
django-version: "4.0"
64+
django-version: "3.2"
6465
extras: "test"
6566
- os: "ubuntu-latest"
6667
python-version: "3.10"
67-
django-version: "4.0"
68+
django-version: "3.2"
6869
extras: "test,dramatiq"
6970
- os: "ubuntu-latest"
7071
python-version: "3.10"
71-
django-version: "4.0"
72+
django-version: "3.2"
7273
extras: "test,celery"
7374
- os: "ubuntu-latest"
7475
python-version: "3.10"
75-
django-version: "4.0"
76+
django-version: "3.2"
7677
extras: "test,drf"
7778
- os: "ubuntu-latest"
7879
python-version: "3.10"
79-
django-version: "4.0"
80+
django-version: "3.2"
8081
extras: "test,cleanup"
8182

8283
runs-on: ${{ matrix.os }}
@@ -91,6 +92,6 @@ jobs:
9192
run: sudo apt-get install -y redis-server
9293
- run: python -m pip install pip~=21.0 # https://github.com/pypa/pip/issues/11133
9394
- run: python -m pip install .[${{ matrix.extras }}] codecov
94-
- run: python -m pip install django~=${{ matrix.django-version }}a
95+
- run: python -m pip install django~=${{ matrix.django-version }}.0
9596
- run: python -m pytest
9697
- run: codecov

0 commit comments

Comments
 (0)