mirror of
https://github.com/pre-commit/pre-commit-hooks.git
synced 2026-04-08 12:34:17 +00:00
Drop py33, add py35
This commit is contained in:
parent
5744ccfd2a
commit
d19360c179
4 changed files with 7 additions and 7 deletions
|
|
@ -1,8 +1,9 @@
|
||||||
language: python
|
language: python
|
||||||
|
python: 3.5
|
||||||
env: # These should match the tox env list
|
env: # These should match the tox env list
|
||||||
- TOXENV=py27
|
- TOXENV=py27
|
||||||
- TOXENV=py33
|
|
||||||
- TOXENV=py34
|
- TOXENV=py34
|
||||||
|
- TOXENV=py35
|
||||||
- TOXENV=pypy
|
- TOXENV=pypy
|
||||||
- TOXENV=pypy3
|
- TOXENV=pypy3
|
||||||
install: pip install coveralls tox
|
install: pip install coveralls tox
|
||||||
|
|
|
||||||
|
|
@ -1,10 +1,10 @@
|
||||||
environment:
|
environment:
|
||||||
matrix:
|
matrix:
|
||||||
- TOXENV: py27
|
- TOXENV: py27
|
||||||
- TOXENV: py34
|
- TOXENV: py35
|
||||||
|
|
||||||
install:
|
install:
|
||||||
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
|
- "SET PATH=C:\\Python35;C:\\Python35\\Scripts;%PATH%"
|
||||||
- pip install tox
|
- pip install tox
|
||||||
|
|
||||||
# Not a C# project
|
# Not a C# project
|
||||||
|
|
|
||||||
5
setup.py
5
setup.py
|
|
@ -11,20 +11,19 @@ setup(
|
||||||
author='Anthony Sottile',
|
author='Anthony Sottile',
|
||||||
author_email='asottile@umich.edu',
|
author_email='asottile@umich.edu',
|
||||||
|
|
||||||
platforms='linux',
|
|
||||||
classifiers=[
|
classifiers=[
|
||||||
'License :: OSI Approved :: MIT License',
|
'License :: OSI Approved :: MIT License',
|
||||||
'Programming Language :: Python :: 2',
|
'Programming Language :: Python :: 2',
|
||||||
'Programming Language :: Python :: 2.6',
|
'Programming Language :: Python :: 2.6',
|
||||||
'Programming Language :: Python :: 2.7',
|
'Programming Language :: Python :: 2.7',
|
||||||
'Programming Language :: Python :: 3',
|
'Programming Language :: Python :: 3',
|
||||||
'Programming Language :: Python :: 3.3',
|
|
||||||
'Programming Language :: Python :: 3.4',
|
'Programming Language :: Python :: 3.4',
|
||||||
|
'Programming Language :: Python :: 3.5',
|
||||||
'Programming Language :: Python :: Implementation :: CPython',
|
'Programming Language :: Python :: Implementation :: CPython',
|
||||||
'Programming Language :: Python :: Implementation :: PyPy',
|
'Programming Language :: Python :: Implementation :: PyPy',
|
||||||
],
|
],
|
||||||
|
|
||||||
packages=find_packages('.', exclude=('tests*', 'testing*')),
|
packages=find_packages(exclude=('tests*', 'testing*')),
|
||||||
install_requires=[
|
install_requires=[
|
||||||
# quickfix to prevent pep8 conflicts
|
# quickfix to prevent pep8 conflicts
|
||||||
'flake8!=2.5.3',
|
'flake8!=2.5.3',
|
||||||
|
|
|
||||||
2
tox.ini
2
tox.ini
|
|
@ -1,7 +1,7 @@
|
||||||
[tox]
|
[tox]
|
||||||
project = pre_commit_hooks
|
project = pre_commit_hooks
|
||||||
# These should match the travis env list
|
# These should match the travis env list
|
||||||
envlist = py27,py33,py34,pypy,pypy3
|
envlist = py27,py34,py35,pypy,pypy3
|
||||||
|
|
||||||
[testenv]
|
[testenv]
|
||||||
deps = -rrequirements-dev.txt
|
deps = -rrequirements-dev.txt
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue