Skip to content

Commit a26d650

Browse files
committed
Python 3.8 support
1 parent 2c8bd97 commit a26d650

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.travis.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
language: python
22

33
python:
4-
- "3.7-dev"
4+
- "3.6"
5+
- "3.7"
6+
- "3.8"
7+
58
env:
69
- COVERAGE="no"
710

@@ -10,7 +13,6 @@ matrix:
1013
- python: 3.6
1114
env: COVERAGE="yes"
1215

13-
1416
before_install:
1517
- pip install --upgrade pip setuptools
1618
- pip install pytest pytest-xdist six mock

setup.py

+1
Original file line numberDiff line numberDiff line change
@@ -127,6 +127,7 @@ def get_datafiles():
127127
"License :: OSI Approved :: BSD License",
128128
"Programming Language :: Python :: 3.6",
129129
"Programming Language :: Python :: 3.7",
130+
"Programming Language :: Python :: 3.8",
130131
"Operating System :: MacOS :: MacOS X",
131132
"Operating System :: Microsoft :: Windows",
132133
"Operating System :: POSIX :: BSD :: FreeBSD",

tox.ini

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py36, py37
2+
envlist = py36, py37, py38
33

44
[testenv]
55
commands = {envpython} setup.py test

0 commit comments

Comments
 (0)