Skip to content

Commit 64f567a

Browse files
Djaillarpkilby
authored andcommitted
Bump CI to Python 3.8 (encode#7008)
1 parent a8c86be commit 64f567a

File tree

3 files changed

+8
-7
lines changed

3 files changed

+8
-7
lines changed

.travis.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,13 @@ matrix:
2121
- { python: "3.7", env: DJANGO=2.2 }
2222
- { python: "3.7", env: DJANGO=master }
2323

24-
- { python: "3.7", env: TOXENV=base }
25-
- { python: "3.7", env: TOXENV=lint }
26-
- { python: "3.7", env: TOXENV=docs }
24+
- { python: "3.8", env: DJANGO=master }
2725

28-
- python: "3.7"
26+
- { python: "3.8", env: TOXENV=base }
27+
- { python: "3.8", env: TOXENV=lint }
28+
- { python: "3.8", env: TOXENV=docs }
29+
30+
- python: "3.8"
2931
env: TOXENV=dist
3032
script:
3133
- python setup.py bdist_wheel

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ def get_version(package):
101101
'Programming Language :: Python :: 3.5',
102102
'Programming Language :: Python :: 3.6',
103103
'Programming Language :: Python :: 3.7',
104+
'Programming Language :: Python :: 3.8',
104105
'Programming Language :: Python :: 3 :: Only',
105106
'Topic :: Internet :: WWW/HTTP',
106107
],

tox.ini

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ envlist =
44
{py35,py36,py37}-django20,
55
{py35,py36,py37}-django21
66
{py35,py36,py37}-django22
7-
{py36,py37}-djangomaster,
7+
{py36,py37,py38}-djangomaster,
88
base,dist,lint,docs,
99

1010
[travis:env]
@@ -44,14 +44,12 @@ deps =
4444
-rrequirements/requirements-optionals.txt
4545

4646
[testenv:lint]
47-
basepython = python3.7
4847
commands = ./runtests.py --lintonly
4948
deps =
5049
-rrequirements/requirements-codestyle.txt
5150
-rrequirements/requirements-testing.txt
5251

5352
[testenv:docs]
54-
basepython = python3.7
5553
skip_install = true
5654
commands = mkdocs build
5755
deps =

0 commit comments

Comments
 (0)