Skip to content

Commit c2fee17

Browse files
abhiabhi94Radi85
authored andcommitted
test(#112): Reduce running time for tox tests
- add support for python3.9
1 parent d29dbdc commit c2fee17

File tree

3 files changed

+4
-9
lines changed

3 files changed

+4
-9
lines changed

.travis.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,9 @@ cache: pip
55

66
python:
77
- 3.6
8-
- 3.7
9-
- 3.8
8+
- 3.9
109
env:
1110
- DJANGO=2.1
12-
- DJANGO=2.2
13-
- DJANGO=3.0
1411
- DJANGO=3.1
1512
- DJANGO=master
1613

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ def get_version():
4343
'Programming Language :: Python :: 3.6',
4444
'Programming Language :: Python :: 3.7',
4545
'Programming Language :: Python :: 3.8',
46+
'Programming Language :: Python :: 3.9',
4647
'Topic :: Internet :: WWW/HTTP',
4748
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
4849
],

tox.ini

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,15 @@
11
[tox]
22
envlist =
3-
py{36,37,38}-{django21, django22, django30, django31, djangomaster}
3+
py{36,39}-{django21, django31, djangomaster}
44

55
[travis]
66
python =
77
3.6: py36
8-
3.7: py37
9-
3.8: py38
8+
3.9: py39
109

1110
[travis:env]
1211
DJANGO =
1312
2.1: django21
14-
2.2: django22
15-
3.0: django30
1613
3.1: django31
1714
master: djangomaster
1815

0 commit comments

Comments
 (0)