diff --git a/.travis.yml b/.travis.yml index 1b42524..2294986 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,11 +1,10 @@ language: python python: -- '2.6' - '2.7' -- '3.2' - '3.3' - '3.4' - '3.5' +- '3.6' install: - python setup.py install - pip install coverage @@ -14,9 +13,6 @@ script: - coverage run --source=random_words setup.py test after_success: - coveralls -matrix: - allow_failures: - - python: '3.2' sudo: false deploy: provider: pypi diff --git a/setup.py b/setup.py index 6d70d12..e46fdf8 100644 --- a/setup.py +++ b/setup.py @@ -34,12 +34,11 @@ def run_tests(self): 'Programming Language :: Python', 'Natural Language :: English', 'Development Status :: 5 - Production/Stable', - 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', - 'Programming Language :: Python :: 3.2', 'Programming Language :: Python :: 3.3', 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', + 'Programming Language :: Python :: 3.6', 'Topic :: Software Development :: Libraries :: Python Modules', ], include_package_data=True,