Skip to content

Commit 5ef00ba

Browse files
authored
update Django to compatibility with 3.1.3 based on passing tests (#58)
1 parent bf41b97 commit 5ef00ba

File tree

3 files changed

+13
-1
lines changed

3 files changed

+13
-1
lines changed

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ python:
77
- "3.5"
88
- "2.7"
99
env:
10+
- DJANGO_VERSION=">=3.1.0,<3.2"
11+
- DJANGO_VERSION=">=3.0.0,<3.1"
1012
- DJANGO_VERSION=">=2.2.0,<2.3"
1113
- DJANGO_VERSION=">=2.1.0,<2.2"
1214
- DJANGO_VERSION=">=2.0.0,<2.1"
@@ -27,6 +29,14 @@ jobs:
2729
env: DJANGO_VERSION=">=2.1.0,<2.2"
2830
- python: "2.7"
2931
env: DJANGO_VERSION=">=2.0.0,<2.1"
32+
- python: "2.7"
33+
env: DJANGO_VERSION=">=3.0.0,<3.1"
34+
- python: "2.7"
35+
env: DJANGO_VERSION=">=3.1.0,<3.2"
36+
- python: "3.5"
37+
env: DJANGO_VERSION=">=3.0.0,<3.1"
38+
- python: "3.5"
39+
env: DJANGO_VERSION=">=3.1.0,<3.2"
3040
include:
3141
- stage: lint
3242
install:

dev-requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
-r dev-env-requirements.txt
2-
django==2.2.13
2+
django==3.1.4

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,5 +41,7 @@ def read(fname):
4141
'Framework :: Django :: 2.0',
4242
'Framework :: Django :: 2.1',
4343
'Framework :: Django :: 2.2',
44+
'Framework :: Django :: 3.0',
45+
'Framework :: Django :: 3.1',
4446
],
4547
)

0 commit comments

Comments
 (0)