From 3aecfe3a516fcb74c39e0183fddbbd1dff6bcb9a Mon Sep 17 00:00:00 2001 From: Andy McCurdy Date: Thu, 29 May 2014 12:57:16 -0700 Subject: test against Python 3.4 with tox. note 3.4.0 has issues, use 3.4.1 instead --- setup.py | 1 + tox.ini | 9 ++++++++- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 45358b4..67706f1 100644 --- a/setup.py +++ b/setup.py @@ -56,5 +56,6 @@ setup( 'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', + 'Programming Language :: Python :: 3.4', ] ) diff --git a/tox.ini b/tox.ini index 0b6f4ce..18e5046 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, py32, py33, hi26, hi27, hi32, hi33, pep8 +envlist = py26, py27, py32, py33, py34, hi26, hi27, hi32, hi33, hi34, pep8 [testenv] deps=pytest>=2.5.0 @@ -33,6 +33,13 @@ deps = pytest>=2.5.0 commands = py.test [] +[testenv:hi34] +basepython = python3.4 +deps = + hiredis>=0.1.3 + pytest>=2.5.0 +commands = py.test [] + [testenv:pep8] deps = pep8 commands = pep8 --repeat --show-source --exclude=.venv,.tox,dist,docs,build,*.egg . -- cgit v1.2.1