Skip to content

Commit e64a94e

Browse files
jramnaialeksihakli
authored andcommitted
build: Tested against Django 3.2
1 parent 2ece702 commit e64a94e

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
max-parallel: 5
1212
matrix:
1313
python-version: ['3.6', '3.7', '3.8', '3.9']
14-
django-version: ['2.2', '3.0', '3.1', 'main']
14+
django-version: ['2.2', '3.0', '3.1', '3.2', 'main']
1515

1616
steps:
1717
- uses: actions/checkout@v2

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
envlist =
3-
py{36,37,38,39}-dj{22,30,31}
3+
py{36,37,38,39}-dj{22,30,31,32}
44
py{38,39}-djmain
55
qa
66

@@ -16,6 +16,7 @@ DJANGO =
1616
2.2: dj22
1717
3.0: dj30
1818
3.1: dj31
19+
3.2: dj32
1920
main: djmain
2021

2122
[testenv]
@@ -24,6 +25,7 @@ deps =
2425
dj22: django>=2.2,<2.3
2526
dj30: django>=3.0,<3.1
2627
dj31: django>=3.1,<3.2
28+
dj32: django>=3.2,<3.3
2729
djmain: https://github.com/django/django/archive/main.tar.gz
2830
usedevelop = True
2931
ignore_outcome =

0 commit comments

Comments
 (0)