Add py34 to testing matrix

This commit is contained in:
Konsta Vesterinen
2014-09-09 16:05:55 +03:00
parent 6eff741e97
commit e06ff515e3
3 changed files with 8 additions and 2 deletions

View File

@@ -11,7 +11,7 @@ python:
- 2.6
- 2.7
- 3.3
- 3.4
install:
- pip install -e ".[test]"

View File

@@ -91,6 +91,12 @@ setup(
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'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',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content',
'Topic :: Software Development :: Libraries :: Python Modules'
]

View File

@@ -1,5 +1,5 @@
[tox]
envlist = py26, py27, py33
envlist = py26, py27, py33, py34
[testenv]
commands = pip install -e ".[test]"