Skip to content

Commit 18e7b4f

Browse files
browniebrokefjsj
authored andcommitted
Add support for Django 4.2
1 parent 0c0ff26 commit 18e7b4f

File tree

3 files changed

+26
-0
lines changed

3 files changed

+26
-0
lines changed

.circleci/config.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,20 @@ workflows:
99
- test-3.8-32
1010
- test-3.8-40
1111
- test-3.8-41
12+
- test-3.8-42
1213

1314
- test-3.9-22
1415
- test-3.9-30
1516
- test-3.9-31
1617
- test-3.9-32
1718
- test-3.9-40
1819
- test-3.9-41
20+
- test-3.9-42
1921

2022
- test-3.10-32
2123
- test-3.10-40
2224
- test-3.10-41
25+
- test-3.10-42
2326

2427
- test-3.11-32
2528
- test-3.11-40
@@ -32,17 +35,20 @@ workflows:
3235
- test-3.8-32
3336
- test-3.8-40
3437
- test-3.8-41
38+
- test-3.8-42
3539

3640
- test-3.9-22
3741
- test-3.9-30
3842
- test-3.9-31
3943
- test-3.9-32
4044
- test-3.9-40
4145
- test-3.9-41
46+
- test-3.9-42
4247

4348
- test-3.10-32
4449
- test-3.10-40
4550
- test-3.10-41
51+
- test-3.10-42
4652

4753
- test-3.11-32
4854
- test-3.11-40
@@ -185,6 +191,12 @@ jobs:
185191
- image: circleci/python:3.8-buster-node
186192
environment:
187193
DJANGO_VERSION: "41"
194+
test-3.8-42:
195+
<<: *test-template
196+
docker:
197+
- image: circleci/python:3.8-buster-node
198+
environment:
199+
DJANGO_VERSION: "42"
188200

189201
test-3.9-22:
190202
<<: *test-template
@@ -222,6 +234,12 @@ jobs:
222234
- image: circleci/python:3.9-buster-node
223235
environment:
224236
DJANGO_VERSION: "41"
237+
test-3.9-42:
238+
<<: *test-template
239+
docker:
240+
- image: circleci/python:3.9-buster-node
241+
environment:
242+
DJANGO_VERSION: "42"
225243

226244
test-3.10-32:
227245
<<: *test-template
@@ -241,6 +259,12 @@ jobs:
241259
- image: circleci/python:3.10-buster-node
242260
environment:
243261
DJANGO_VERSION: "41"
262+
test-3.10-42:
263+
<<: *test-template
264+
docker:
265+
- image: circleci/python:3.10-buster-node
266+
environment:
267+
DJANGO_VERSION: "42"
244268

245269
test-3.11-32:
246270
<<: *test-template

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@ def rel(*parts):
4545
'Framework :: Django :: 3.2',
4646
'Framework :: Django :: 4.0',
4747
'Framework :: Django :: 4.1',
48+
'Framework :: Django :: 4.2',
4849
'Environment :: Web Environment',
4950
'License :: OSI Approved :: MIT License',
5051
],

tests/requirements/django42.txt

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

0 commit comments

Comments
 (0)