Skip to content

Commit bf35114

Browse files
browniebrokefjsj
authored andcommitted
Add compatibility for Django 4.1
1 parent f8e3b8c commit bf35114

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

.circleci/config.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,14 @@ workflows:
1818
- test-3.8-31
1919
- test-3.8-32
2020
- test-3.8-40
21+
- test-3.8-41
2122

2223
- test-3.9-22
2324
- test-3.9-30
2425
- test-3.9-31
2526
- test-3.9-32
2627
- test-3.9-40
28+
- test-3.9-41
2729

2830
- done:
2931
requires:
@@ -42,12 +44,14 @@ workflows:
4244
- test-3.8-31
4345
- test-3.8-32
4446
- test-3.8-40
47+
- test-3.8-41
4548

4649
- test-3.9-22
4750
- test-3.9-30
4851
- test-3.9-31
4952
- test-3.9-32
5053
- test-3.9-40
54+
- test-3.9-41
5155

5256
jobs:
5357
base: &test-template
@@ -178,6 +182,12 @@ jobs:
178182
- image: circleci/python:3.8-buster-node
179183
environment:
180184
DJANGO_VERSION: "40"
185+
test-3.8-41:
186+
<<: *test-template
187+
docker:
188+
- image: circleci/python:3.8-buster-node
189+
environment:
190+
DJANGO_VERSION: "41"
181191

182192
test-3.9-22:
183193
<<: *test-template
@@ -209,6 +219,12 @@ jobs:
209219
- image: circleci/python:3.9-buster-node
210220
environment:
211221
DJANGO_VERSION: "40"
222+
test-3.9-41:
223+
<<: *test-template
224+
docker:
225+
- image: circleci/python:3.9-buster-node
226+
environment:
227+
DJANGO_VERSION: "41"
212228

213229
done:
214230
docker:

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def rel(*parts):
4343
'Framework :: Django :: 3.1',
4444
'Framework :: Django :: 3.2',
4545
'Framework :: Django :: 4.0',
46+
'Framework :: Django :: 4.1',
4647
'Environment :: Web Environment',
4748
'License :: OSI Approved :: MIT License',
4849
],

tests/requirements/django41.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
django>=4.1,<4.2

0 commit comments

Comments
 (0)