Skip to content

Commit 64bab07

Browse files
committed
Fixed tox issues. Added support for Python 3.7
1 parent 3d607a0 commit 64bab07

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

.travis.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ matrix:
66
env: TOX_ENV=pypy
77
- python: '2.7'
88
env: TOX_ENV=py27
9-
- python: '3.4'
10-
env: TOX_ENV=py34
119
- python: '3.5'
1210
env: TOX_ENV=py35
1311
- python: '3.6'
14-
env: TOX_ENV=py36,import-order,flake8
12+
env: TOX_ENV=py36
13+
- python: '3.6'
14+
env: TOX_ENV=import-order,flake8
1515
cache:
1616
directories:
1717
- $HOME/.cache/pip

setup.py

+2
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@
2222
"Programming Language :: Python :: 3.3",
2323
"Programming Language :: Python :: 3.4",
2424
"Programming Language :: Python :: 3.5",
25+
"Programming Language :: Python :: 3.6",
26+
"Programming Language :: Python :: 3.7",
2527
"Programming Language :: Python :: Implementation :: PyPy",
2628
"License :: OSI Approved :: MIT License",
2729
],

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[tox]
2-
envlist = flake8,import-order,py35,py27,py33,py34,pypy
2+
envlist = flake8,import-order,py35,py27,py33,py34,py36,py37,pypy
33
skipsdist = true
44

55
[testenv]
@@ -13,7 +13,7 @@ deps =
1313
Flask>=0.10.0
1414
pytest-cov
1515
commands =
16-
py{py,27,34,35,36}: py.test tests {posargs}
16+
py{py,27,34,35,36,37}: py.test tests {posargs}
1717

1818
[testenv:flake8]
1919
basepython=python3.6

0 commit comments

Comments
 (0)