Skip to content

Commit 291ce06

Browse files
committed
Python 3.8 support
1 parent 2c8bd97 commit 291ce06

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.travis.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,13 @@
11
language: python
22

3-
python:
4-
- "3.7-dev"
5-
env:
6-
- COVERAGE="no"
7-
83
matrix:
94
include:
105
- python: 3.6
6+
env: COVERAGE="no"
7+
- python: 3.7
118
env: COVERAGE="yes"
12-
9+
- python: 3.8
10+
env: COVERAGE="no"
1311

1412
before_install:
1513
- pip install --upgrade pip setuptools

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)