We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e956df commit 1ec0f86Copy full SHA for 1ec0f86
.gitignore
@@ -2,6 +2,8 @@
2
*.db
3
*~
4
.*
5
+*.py.bak
6
+
7
8
/site/
9
/htmlcov/
.travis.yml
@@ -10,18 +10,20 @@ matrix:
10
- { python: "3.6", env: DJANGO=2.2 }
11
- { python: "3.6", env: DJANGO=3.0 }
12
- { python: "3.6", env: DJANGO=3.1 }
13
- - { python: "3.6", env: DJANGO=master }
+ - { python: "3.6", env: DJANGO=3.2 }
14
15
- { python: "3.7", env: DJANGO=2.2 }
16
- { python: "3.7", env: DJANGO=3.0 }
17
- { python: "3.7", env: DJANGO=3.1 }
18
- - { python: "3.7", env: DJANGO=master }
+ - { python: "3.7", env: DJANGO=3.2 }
19
20
- { python: "3.8", env: DJANGO=3.0 }
21
- { python: "3.8", env: DJANGO=3.1 }
22
+ - { python: "3.8", env: DJANGO=3.2 }
23
- { python: "3.8", env: DJANGO=master }
24
25
- { python: "3.9", env: DJANGO=3.1 }
26
+ - { python: "3.9", env: DJANGO=3.2 }
27
- { python: "3.9", env: DJANGO=master }
28
29
- { python: "3.8", env: TOXENV=base }
@@ -38,6 +40,7 @@ matrix:
38
40
39
41
allow_failures:
42
- env: DJANGO=master
43
+ - env: DJANGO=3.2
44
45
install:
46
- pip install tox tox-travis
tox.ini
@@ -3,14 +3,16 @@ envlist =
{py35,py36,py37}-django22,
{py36,py37,py38}-django30,
{py36,py37,py38,py39}-django31,
- {py36,py37,py38,py39}-djangomaster,
+ {py36,py37,py38,py39}-django32,
+ {py38,py39}-djangomaster,
base,dist,lint,docs,
[travis:env]
DJANGO =
2.2: django22
3.0: django30
3.1: django31
+ 3.2: django32
master: djangomaster
[testenv]
@@ -23,6 +25,7 @@ deps =
django22: Django>=2.2,<3.0
django30: Django>=3.0,<3.1
django31: Django>=3.1,<3.2
+ django32: Django>=3.2a1,<4.0
djangomaster: https://github.com/django/django/archive/master.tar.gz
30
-rrequirements/requirements-testing.txt
31
-rrequirements/requirements-optionals.txt
0 commit comments