Skip to content

Commit e984e52

Browse files
committed
Add Django 3.0 support
Drop Django 2.0 and 2.1 support
1 parent 9e2b4f3 commit e984e52

File tree

2 files changed

+8
-11
lines changed

2 files changed

+8
-11
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: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,16 +13,15 @@ classifier =
1313
Intended Audience :: Developers
1414
Programming Language :: Python
1515
Programming Language :: Python :: 3
16-
Programming Language :: Python :: 3.5
1716
Programming Language :: Python :: 3.6
1817
Programming Language :: Python :: 3.7
18+
Programming Language :: Python :: 3.8
1919
Programming Language :: Python :: 3 :: Only
2020
Topic :: Internet :: WWW/HTTP
2121
Topic :: Internet
2222
Framework :: Django
23-
Framework :: Django :: 2.0
24-
Framework :: Django :: 2.1
2523
Framework :: Django :: 2.2
24+
Framework :: Django :: 3.0
2625
keywords = django, otp, password, email
2726

2827
[options]
@@ -58,17 +57,16 @@ addopts = --cov=mailauth --cov-report xml --cov-report term-missing --tb=short
5857
DJANGO_SETTINGS_MODULE = tests.testapp.settings
5958

6059
[tox:tox]
61-
envlist = py{36,37}-dj{22,11,master}-{sqlite,pg},docs
60+
envlist = py{36,37,38}-dj{22,30,master}-{sqlite,pg},docs
6261
depencies = psycopg2-binary
6362

6463
[testenv]
6564
passenv=CI
6665
setenv =
6766
pg: DB=pg
6867
deps =
69-
dj20: https://github.com/django/django/archive/stable/2.0.x.tar.gz#egg=django
70-
dj21: https://github.com/django/django/archive/stable/2.1.x.tar.gz#egg=django
71-
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
7270
djmaster: https://github.com/django/django/archive/master.tar.gz#egg=django
7371
pg: psycopg2-binary
7472
commands = python setup.py test

0 commit comments

Comments
 (0)