Skip to content

Commit e8bb206

Browse files
committed
Add support for Python 3.8
Also... - remove obsolete `sudo` keyword from Travis config (https://blog.travis-ci.com/2018-11-19-required-linux-infrastructure-migration) - additionally use 64 bit interpreters on AppVeyor modified: .travis.yml modified: appveyor.yml modified: setup.py modified: tox.ini
1 parent 97d60c4 commit e8bb206

File tree

4 files changed

+11
-2
lines changed

4 files changed

+11
-2
lines changed

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
sudo: false
21
os: linux
32
language: python
43

@@ -9,6 +8,7 @@ python:
98
- 3.5
109
- 3.6
1110
- 3.7
11+
- 3.8
1212

1313
env:
1414
- TOXENV=test

appveyor.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,17 @@ build: false # Not a C# project, build stuff at the test step instead.
22
environment:
33
matrix:
44
- PYTHON: "C:/Python27"
5+
- PYTHON: "C:/Python27-x64"
56
- PYTHON: "C:/Python34"
7+
- PYTHON: "C:/Python34-x64"
68
- PYTHON: "C:/Python35"
9+
- PYTHON: "C:/Python35-x64"
710
- PYTHON: "C:/Python36"
11+
- PYTHON: "C:/Python36-x64"
12+
- PYTHON: "C:/Python37"
13+
- PYTHON: "C:/Python37-x64"
14+
- PYTHON: "C:/Python38"
15+
- PYTHON: "C:/Python38-x64"
816

917
init:
1018
- "ECHO %PYTHON%"

setup.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
'Programming Language :: Python :: 3.5',
3434
'Programming Language :: Python :: 3.6',
3535
'Programming Language :: Python :: 3.7',
36+
'Programming Language :: Python :: 3.8',
3637
'Programming Language :: Python :: Implementation :: CPython',
3738
],
3839
python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*',

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py{27,py,34,35,36}-{test,stylecheck}
2+
envlist = py{27,py,34,35,36,37,38}-{test,stylecheck}
33

44
[testenv]
55
deps =

0 commit comments

Comments
 (0)