Skip to content

Commit 4ce7e4d

Browse files
committed
Add Django 3.0 support
Drop Django 2.0 and 2.1 support
1 parent f8f0ba8 commit 4ce7e4d

File tree

2 files changed

+6
-8
lines changed

2 files changed

+6
-8
lines changed

.travis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,13 @@ dist: xenial
33
python:
44
- "3.6"
55
- "3.7"
6+
- "3.8"
67
env:
7-
- DJANGO=20-sqlite
8-
- DJANGO=21-sqlite
98
- DJANGO=22-sqlite
9+
- DJANGO=30-sqlite
1010
- DJANGO=master-sqlite
11-
- DJANGO=20-pg
12-
- DJANGO=21-pg
1311
- DJANGO=22-pg
12+
- DJANGO=30-pg
1413
- DJANGO=master-pg
1514

1615
addons:

setup.cfg

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,17 +57,16 @@ addopts = --cov=mailauth --cov-report xml --cov-report term-missing --tb=short
5757
DJANGO_SETTINGS_MODULE = tests.testapp.settings
5858

5959
[tox:tox]
60-
envlist = py{36,37}-dj{22,11,master}-{sqlite,pg},docs
60+
envlist = py{36,37,38}-dj{22,30,master}-{sqlite,pg},docs
6161
depencies = psycopg2-binary
6262

6363
[testenv]
6464
passenv=CI
6565
setenv =
6666
pg: DB=pg
6767
deps =
68-
dj20: https://github.com/django/django/archive/stable/2.0.x.tar.gz#egg=django
69-
dj21: https://github.com/django/django/archive/stable/2.1.x.tar.gz#egg=django
70-
dj22: https://github.com/django/django/archive/stable/2.2.x.tar.gz#egg=django
68+
dj22: django~=2.2
69+
dj30: django~=3.0
7170
djmaster: https://github.com/django/django/archive/master.tar.gz#egg=django
7271
pg: psycopg2-binary
7372
commands = python setup.py test

0 commit comments

Comments
 (0)