diff --git a/.travis.yml b/.travis.yml index 5c4c8cdf..8a87f022 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,9 +2,9 @@ language: python python: - 2.6 - 2.7 - - 3.2 - 3.3 - 3.4 + - 3.5 install: - python setup.py install script: python test_tablib.py diff --git a/setup.py b/setup.py index 2e2a376c..271943e8 100755 --- a/setup.py +++ b/setup.py @@ -84,14 +84,11 @@ 'Natural Language :: English', 'License :: OSI Approved :: MIT License', 'Programming Language :: Python', - 'Programming Language :: Python :: 2.5', 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.0', - 'Programming Language :: Python :: 3.1', - 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', ), tests_require=['pytest'], ) diff --git a/tox.ini b/tox.ini index 52cd3219..d27a1142 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py26, py27, py32, py33, py34, pypy +envlist = py26, py27, py33, py34, py35, pypy [testenv] commands = python setup.py test