Skip to content

Commit 51b06e8

Browse files
committed
Add support for Python 3.8
1 parent 44e4702 commit 51b06e8

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ python:
55
- "3.5"
66
- "3.6"
77
- "3.7"
8+
- "3.8"
89
- "pypy"
910
- "pypy3"
1011

appveyor.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@ environment:
1515
- PYTHON: "C:\\Python37"
1616
TOX_ENV: "py37"
1717

18+
- PYTHON: "C:\\Python38"
19+
TOX_ENV: "py38"
20+
1821

1922
init:
2023
- "%PYTHON%/python -V"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,5 @@
3636
'Programming Language :: Python :: 3.5',
3737
'Programming Language :: Python :: 3.6',
3838
'Programming Language :: Python :: 3.7',
39+
'Programming Language :: Python :: 3.8',
3940
])

tox.ini

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[tox]
2-
envlist=py{27,35,36,37}-pytest{30,31,32,33,34,35}
2+
envlist=py{27,35,36,37,38}-pytest{30,31,32,33,34,35}
33

44
[testenv]
55
deps =
66
coverage
77
py{27},pypy: django<2
8-
py{35,36,37},pypy3: django>=2
8+
py{35,36,37,38},pypy3: django>=2
99
pytest30: pytest>=3.0,<3.1
1010
pytest31: pytest>=3.1,<3.2
1111
pytest32: pytest>=3.2,<3.3

0 commit comments

Comments
 (0)