Skip to content

Commit 5f7ccc2

Browse files
committed
Updated Python3 tested versions to 3.5+
1 parent 260cd83 commit 5f7ccc2

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.travis.yml

+3-5
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,10 @@ matrix:
66
env: TOX_ENV=pypy
77
- python: '2.7'
88
env: TOX_ENV=py27
9-
- python: '3.3'
10-
env: TOX_ENV=py33
11-
- python: '3.4'
12-
env: TOX_ENV=py34
139
- python: '3.5'
14-
env: TOX_ENV=py35,import-order,flake8
10+
env: TOX_ENV=py35
11+
- python: '3.6'
12+
env: TOX_ENV=py36,import-order,flake8
1513
cache:
1614
directories:
1715
- $HOME/.cache/pip

tox.ini

+4-4
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,py27,py35,py36,pypy
33
skipsdist = true
44

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

1818
[testenv:flake8]
19-
basepython=python3.5
19+
basepython=python3.6
2020
deps = flake8
2121
commands =
2222
flake8 webob_graphql
2323

2424
[testenv:import-order]
25-
basepython=python3.5
25+
basepython=python3.6
2626
deps =
2727
isort
2828
graphql-core>=1.0

0 commit comments

Comments
 (0)