mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-08 20:44:18 +00:00
Merge pull request #305 from pre-commit/no_py35
Don't test python3.5 now that we test python3.7
This commit is contained in:
commit
e719df51fe
3 changed files with 2 additions and 4 deletions
|
|
@ -3,8 +3,6 @@ sudo: false
|
||||||
matrix:
|
matrix:
|
||||||
include: # These should match the tox env list
|
include: # These should match the tox env list
|
||||||
- env: TOXENV=py27
|
- env: TOXENV=py27
|
||||||
- env: TOXENV=py35
|
|
||||||
python: 3.5
|
|
||||||
- env: TOXENV=py36
|
- env: TOXENV=py36
|
||||||
python: 3.6
|
python: 3.6
|
||||||
- env: TOXENV=py37
|
- env: TOXENV=py37
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -16,8 +16,8 @@ setup(
|
||||||
'Programming Language :: Python :: 2',
|
'Programming Language :: Python :: 2',
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 2.7',
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.5',
|
|
||||||
'Programming Language :: Python :: 3.6',
|
'Programming Language :: Python :: 3.6',
|
||||||
|
'Programming Language :: Python :: 3.7',
|
||||||
'Programming Language :: Python :: Implementation :: CPython',
|
'Programming Language :: Python :: Implementation :: CPython',
|
||||||
'Programming Language :: Python :: Implementation :: PyPy',
|
'Programming Language :: Python :: Implementation :: PyPy',
|
||||||
],
|
],
|
||||||
|
|
|
||||||
2
tox.ini
2
tox.ini
|
|
@ -1,6 +1,6 @@
|
||||||
[tox]
|
[tox]
|
||||||
# These should match the travis env list
|
# These should match the travis env list
|
||||||
envlist = py27,py35,py36,py37,pypy
|
envlist = py27,py36,py37,pypy
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps = -rrequirements-dev.txt
|
deps = -rrequirements-dev.txt
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue