Skip to content

Commit 71df647

Browse files
Djaillavimalloc
authored andcommitted
[compat] Add missing python version in CI test matrix (#290)
Remove deprecated python 3.4 Add python 3.7 and 3.8
1 parent 0ba5322 commit 71df647

File tree

4 files changed

+12
-9
lines changed

4 files changed

+12
-9
lines changed

.travis.yml

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
language: python
22
matrix:
33
include:
4+
- python: 3.8
5+
env: TOXENV=py38
6+
- python: 3.7
7+
env: TOXENV=py37
48
- python: 3.6
5-
env: TOXENV=py
9+
env: TOXENV=py36
610
- python: 3.5
7-
env: TOXENV=py
8-
- python: 3.4
9-
env: TOXENV=py
11+
env: TOXENV=py35
1012
- python: 2.7
11-
env: TOXENV=py
13+
env: TOXENV=py27
1214
- python: pypy
13-
env: TOXENV=py
15+
env: TOXENV=pypy
1416
sudo: false
1517
install:
1618
- pip install -U pip

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Come chat with the community or ask questions at https://discord.gg/EJBsbFd
3030
### Local Development
3131
We require 100% code coverage in our unit tests. You can run the tests locally
3232
with `tox` which will print out a code coverage report. Creating a pull request
33-
will run the tests against python 2.7, 3.4, 3.5, 3.6, and PyPy.
33+
will run the tests against python 2.7, 3.5, 3.6, 3.7, 3.8 and PyPy.
3434
```
3535
$ tox
3636
```

setup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,10 @@
4646
'Programming Language :: Python',
4747
'Programming Language :: Python :: 2.7',
4848
'Programming Language :: Python :: 3',
49-
'Programming Language :: Python :: 3.4',
5049
'Programming Language :: Python :: 3.5',
5150
'Programming Language :: Python :: 3.6',
51+
'Programming Language :: Python :: 3.7',
52+
'Programming Language :: Python :: 3.8',
5253
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
5354
'Topic :: Software Development :: Libraries :: Python Modules'
5455
])

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, py34, py35, py36
7+
envlist = py{27,35,36,37,38,py}
88

99
[testenv]
1010
commands =

0 commit comments

Comments
 (0)