Skip to content

Commit 1ec0f86

Browse files
authored
Dj32 (#7713)
adds django 3.2 line to the build matrix
1 parent 3e956df commit 1ec0f86

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
*.db
33
*~
44
.*
5+
*.py.bak
6+
57

68
/site/
79
/htmlcov/

.travis.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,20 @@ matrix:
1010
- { python: "3.6", env: DJANGO=2.2 }
1111
- { python: "3.6", env: DJANGO=3.0 }
1212
- { python: "3.6", env: DJANGO=3.1 }
13-
- { python: "3.6", env: DJANGO=master }
13+
- { python: "3.6", env: DJANGO=3.2 }
1414

1515
- { python: "3.7", env: DJANGO=2.2 }
1616
- { python: "3.7", env: DJANGO=3.0 }
1717
- { python: "3.7", env: DJANGO=3.1 }
18-
- { python: "3.7", env: DJANGO=master }
18+
- { python: "3.7", env: DJANGO=3.2 }
1919

2020
- { python: "3.8", env: DJANGO=3.0 }
2121
- { python: "3.8", env: DJANGO=3.1 }
22+
- { python: "3.8", env: DJANGO=3.2 }
2223
- { python: "3.8", env: DJANGO=master }
2324

2425
- { python: "3.9", env: DJANGO=3.1 }
26+
- { python: "3.9", env: DJANGO=3.2 }
2527
- { python: "3.9", env: DJANGO=master }
2628

2729
- { python: "3.8", env: TOXENV=base }
@@ -38,6 +40,7 @@ matrix:
3840

3941
allow_failures:
4042
- env: DJANGO=master
43+
- env: DJANGO=3.2
4144

4245
install:
4346
- pip install tox tox-travis

tox.ini

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ envlist =
33
{py35,py36,py37}-django22,
44
{py36,py37,py38}-django30,
55
{py36,py37,py38,py39}-django31,
6-
{py36,py37,py38,py39}-djangomaster,
6+
{py36,py37,py38,py39}-django32,
7+
{py38,py39}-djangomaster,
78
base,dist,lint,docs,
89

910
[travis:env]
1011
DJANGO =
1112
2.2: django22
1213
3.0: django30
1314
3.1: django31
15+
3.2: django32
1416
master: djangomaster
1517

1618
[testenv]
@@ -23,6 +25,7 @@ deps =
2325
django22: Django>=2.2,<3.0
2426
django30: Django>=3.0,<3.1
2527
django31: Django>=3.1,<3.2
28+
django32: Django>=3.2a1,<4.0
2629
djangomaster: https://github.com/django/django/archive/master.tar.gz
2730
-rrequirements/requirements-testing.txt
2831
-rrequirements/requirements-optionals.txt

0 commit comments

Comments
 (0)