Skip to content

Commit c3ac0e1

Browse files
committed
Add support for Python 3.8
1 parent 3a9bccf commit c3ac0e1

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ matrix:
88
- python: 3.5
99
- python: 3.6
1010
- python: 3.7
11-
dist: xenial
11+
- python: 3.8
1212
# macOS
1313
- language: generic
1414
os: osx

appveyor.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,10 @@ environment:
2727
PYTHON_VERSION: "3.7.x"
2828
PYTHON_ARCH: "32"
2929

30+
- PYTHON: "C:\\Python38"
31+
PYTHON_VERSION: "3.8.x"
32+
PYTHON_ARCH: "32"
33+
3034
# 64 bits
3135

3236
- PYTHON: "C:\\Python27-x64"
@@ -45,6 +49,10 @@ environment:
4549
PYTHON_VERSION: "3.7.x"
4650
PYTHON_ARCH: "64"
4751

52+
- PYTHON: "C:\\Python38-x64"
53+
PYTHON_VERSION: "3.8.x"
54+
PYTHON_ARCH: "64"
55+
4856
init:
4957
- "ECHO %PYTHON% %PYTHON_VERSION% %PYTHON_ARCH%"
5058

setup.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -323,6 +323,11 @@ def main():
323323
'Programming Language :: Python :: 2.6',
324324
'Programming Language :: Python :: 2.7',
325325
'Programming Language :: Python :: 3',
326+
'Programming Language :: Python :: 3.4',
327+
'Programming Language :: Python :: 3.5',
328+
'Programming Language :: Python :: 3.6',
329+
'Programming Language :: Python :: 3.7',
330+
'Programming Language :: Python :: 3.8',
326331
'Programming Language :: Python :: Implementation :: CPython',
327332
'Programming Language :: Python :: Implementation :: PyPy',
328333
'Programming Language :: Python',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# directory.
66

77
[tox]
8-
envlist = py26, py27, py34, py35, py36, py37, lint
8+
envlist = py26, py27, py34, py35, py36, py37, py38, lint
99

1010
[testenv]
1111
deps =

0 commit comments

Comments
 (0)