Skip to content

Commit e719df5

Browse files
authored
Merge pull request #305 from pre-commit/no_py35
Don't test python3.5 now that we test python3.7
2 parents b9ade8f + c9899ab commit e719df5

File tree

3 files changed

+2
-4
lines changed

3 files changed

+2
-4
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,6 @@ sudo: false
33
matrix:
44
include: # These should match the tox env list
55
- env: TOXENV=py27
6-
- env: TOXENV=py35
7-
python: 3.5
86
- env: TOXENV=py36
97
python: 3.6
108
- env: TOXENV=py37

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616
'Programming Language :: Python :: 2',
1717
'Programming Language :: Python :: 2.7',
1818
'Programming Language :: Python :: 3',
19-
'Programming Language :: Python :: 3.5',
2019
'Programming Language :: Python :: 3.6',
20+
'Programming Language :: Python :: 3.7',
2121
'Programming Language :: Python :: Implementation :: CPython',
2222
'Programming Language :: Python :: Implementation :: PyPy',
2323
],

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tox]
22
# These should match the travis env list
3-
envlist = py27,py35,py36,py37,pypy
3+
envlist = py27,py36,py37,pypy
44

55
[testenv]
66
deps = -rrequirements-dev.txt

0 commit comments

Comments
 (0)