Skip to content

Commit f4703e0

Browse files
authored
Merge pull request #40 from msabramo/python37
Test with Python 3.7 in tox and Travis CI
2 parents 0dd4da7 + c72c09b commit f4703e0

File tree

2 files changed

+19
-10
lines changed

2 files changed

+19
-10
lines changed

.travis.yml

Lines changed: 18 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,22 @@
11
language: python
2-
3-
env:
4-
- TOXENV=py27
5-
- TOXENV=py33
6-
- TOXENV=py34
7-
- TOXENV=py35
8-
- TOXENV=pypy
9-
- TOXENV=flake8
10-
- TOXENV=coverage
2+
matrix:
3+
include:
4+
- python: 2.7
5+
sudo: true
6+
env: TOXENV=py27
7+
- python: 3.4
8+
sudo: true
9+
env: TOXENV=py34
10+
- python: 3.5
11+
sudo: true
12+
env: TOXENV=py35
13+
- python: 3.6
14+
sudo: true
15+
env: TOXENV=py36
16+
- python: 3.7
17+
dist: xenial
18+
sudo: true
19+
env: TOXENV=py37
1120

1221
install:
1322
- travis_retry pip install tox

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = py26, py27, py33, py34, py35, py36, pypy, flake8
2+
envlist = py26, py27, py33, py34, py35, py36, py37, pypy, flake8
33

44
[testenv]
55
commands = py.test {posargs:requests_unixsocket/tests}

0 commit comments

Comments
 (0)