Skip to content

Commit

Permalink
Drop py33, add py35
Browse files Browse the repository at this point in the history
  • Loading branch information
asottile committed Aug 22, 2016
1 parent 5744ccf commit d19360c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
language: python
python: 3.5
env: # These should match the tox env list
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=py35
- TOXENV=pypy
- TOXENV=pypy3
install: pip install coveralls tox
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
environment:
matrix:
- TOXENV: py27
- TOXENV: py34
- TOXENV: py35

install:
- "SET PATH=C:\\Python34;C:\\Python34\\Scripts;%PATH%"
- "SET PATH=C:\\Python35;C:\\Python35\\Scripts;%PATH%"
- pip install tox

# Not a C# project
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,20 +11,19 @@
author='Anthony Sottile',
author_email='[email protected]',

platforms='linux',
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: Implementation :: CPython',
'Programming Language :: Python :: Implementation :: PyPy',
],

packages=find_packages('.', exclude=('tests*', 'testing*')),
packages=find_packages(exclude=('tests*', 'testing*')),
install_requires=[
# quickfix to prevent pep8 conflicts
'flake8!=2.5.3',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[tox]
project = pre_commit_hooks
# These should match the travis env list
envlist = py27,py33,py34,pypy,pypy3
envlist = py27,py34,py35,pypy,pypy3

[testenv]
deps = -rrequirements-dev.txt
Expand Down

0 comments on commit d19360c

Please sign in to comment.