Add python 3.4 on travis.

This commit is contained in:
Anthony Sottile 2014-06-01 15:59:14 -07:00
parent 0a2daf5f8b
commit f961d8f5e1
3 changed files with 3 additions and 1 deletions

View File

@ -3,6 +3,7 @@ env: # These should match the tox env list
- TOXENV=py26
- TOXENV=py27
- TOXENV=py33
- TOXENV=py34
- TOXENV=pypy
install: pip install tox --use-mirrors
script: tox

View File

@ -17,6 +17,7 @@ setup(
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: Implementation :: PyPy',
],

View File

@ -1,7 +1,7 @@
[tox]
project = pre_commit_hooks
# These should match the travis env list
envlist = py26,py27,py33,pypy
envlist = py26,py27,py33,py34,pypy
[testenv]
install_command = pip install --use-wheel {opts} {packages}