Skip to content

Commit 471d89d

Browse files
authored
Merge pull request #126 from azmeuk/py38
Added official python 3.8 support, dropped python 3.4 support. Thanks Éloi Rivard (@azmeuk) !
2 parents 331b58e + 4980b0c commit 471d89d

File tree

3 files changed

+9
-24
lines changed

3 files changed

+9
-24
lines changed

.travis.yml

Lines changed: 7 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,15 @@
11
language: python
22

33
python:
4-
- "3.6"
5-
6-
# Enable 3.7 without globally enabling sudo and dist: xenial for other build jobs
7-
matrix:
8-
include:
9-
- name: "Python: 3.7"
10-
python: "3.7"
11-
dist: xenial
12-
sudo: true
13-
env: TOX_ENV=py37
14-
15-
env:
16-
- TOX_ENV=py27
17-
- TOX_ENV=py34
18-
# - TOX_ENV=py35
19-
- TOX_ENV=py36
20-
21-
before_install:
22-
# work around https://github.com/travis-ci/travis-ci/issues/8363
23-
- pyenv global system $TRAVIS_PYTHON_VERSION
4+
- 2.7
5+
- 3.5
6+
- 3.6
7+
- 3.7
8+
- 3.8
249

2510
install:
26-
- travis_retry pip install -U pip wheel tox
11+
- travis_retry pip install -U pip wheel tox-travis
2712
- travis_retry pip install -U -r requirements.txt -e ".[test]"
2813

2914
script:
30-
- tox -e $TOX_ENV
15+
- tox

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ def find_version(*file_paths):
7373
"Programming Language :: Python :: 2",
7474
"Programming Language :: Python :: 2.7",
7575
"Programming Language :: Python :: 3",
76-
"Programming Language :: Python :: 3.4",
7776
"Programming Language :: Python :: 3.5",
7877
"Programming Language :: Python :: 3.6",
7978
"Programming Language :: Python :: 3.7",
79+
"Programming Language :: Python :: 3.8",
8080
],
8181
)

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# and then run "tox" from this directory.
55

66
[tox]
7-
envlist = py27, py35, py36, py37, doc
7+
envlist = py27, py35, py36, py37, py38, doc
88

99
[testenv]
1010
deps =

0 commit comments

Comments
 (0)