Skip to content

Commit 6bb205b

Browse files
committed
added Django 3.0 to travis
1 parent 2f3721a commit 6bb205b

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,10 @@ matrix:
4545
- { python: "3.6", env: DJANGO=2.2 DATABASE=postgres }
4646
- { python: "3.7", env: DJANGO=2.2 DATABASE=postgres }
4747

48+
- { python: "3.6", env: DJANGO=3.0 DATABASE=postgres }
49+
- { python: "3.7", env: DJANGO=3.0 DATABASE=postgres }
50+
- { python: "3.8", env: DJANGO=3.0 DATABASE=postgres }
51+
4852
- { python: "3.5", env: DJANGO=master DATABASE=postgres }
4953
- { python: "3.6", env: DJANGO=master DATABASE=postgres }
5054
- { python: "3.7", env: DJANGO=master DATABASE=postgres }

tox.ini

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ envlist =
77
{py34,py35,py36,py37}-django20,
88
{py35,py36,py37}-django21,
99
{py35,py36,py37}-django22,
10+
{py36,py37,py38}-django30,
1011
{py35,py36,py37}-djangomaster
1112

1213
[testenv]
@@ -19,6 +20,7 @@ deps =
1920
django20: Django>=2.0,<2.1
2021
django21: Django>=2.1,<2.2
2122
django22: Django>=2.2,<3.0
23+
django30: Django>=3.0,<3.1
2224
djangomaster: https://github.com/django/django/archive/master.tar.gz
2325
postgres: psycopg2-binary
2426
argparse
@@ -34,6 +36,7 @@ DJANGO =
3436
2.0: django20
3537
2.1: django21
3638
2.2: django22
39+
3.0: django30
3740
master: djangomaster
3841

3942
DATABASE =

0 commit comments

Comments
 (0)