Skip to content

Commit e2cc7b7

Browse files
committed
Enable Python 3.8 in TravisCI
1 parent 74765c5 commit e2cc7b7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
"2.7",
1010
"3.6",
1111
"3.7"
12+
"3.8"
1213
],
1314
"cache": "pip",
1415
"install": [

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,16 @@ envlist =
77
# the version matrix according to the Django docs:
88
# https://docs.djangoproject.com/en/2.0/faq/install/#what-python-version-can-i-use-with-django
99
py{27,36}-dj111-tests,
10-
py{36,37}-dj{21,22}-tests,
10+
py{36,37,38}-dj{21,22}-tests,
1111
py{27,36}-fl{011,012,10}-tests,
12-
py{36,37}-s19-tests,
12+
py{36,37,38}-s19-tests,
1313

1414
[testenv]
1515
basepython =
1616
py27: python2.7
1717
py36: python3.6
1818
py37: python3.7
19+
py38: python3.8
1920
usedevelop = true
2021
setenv =
2122
DJANGO_SETTINGS_MODULE = tests.settings

0 commit comments

Comments
 (0)