diff --git a/.travis.yml b/.travis.yml index 493cfdb9..0bf49d3b 100644 --- a/.travis.yml +++ b/.travis.yml @@ -2,11 +2,11 @@ language: python cache: pip python: - "2.7" + - "3.8" + - "3.7" - "3.6" - "3.5" - - "3.4" - "pypy" -sudo: false # Use container-based infrastructure install: - "pip install mock" script: "python -m unittest discover -p *_test.py" diff --git a/README.rst b/README.rst index 20c73fa3..592b0705 100644 --- a/README.rst +++ b/README.rst @@ -71,7 +71,7 @@ Copyright Jonathan Hartley 2013. BSD 3-Clause license; see LICENSE file. Dependencies ============ -None, other than Python. Tested on Python 2.7, 3.4, 3.5 and 3.6. +None, other than Python. Tested on Python 2.7, 3.5, 3.6, 3.7 and 3.8. Usage ===== diff --git a/setup.py b/setup.py index 35aecd89..31720d02 100644 --- a/setup.py +++ b/setup.py @@ -41,7 +41,7 @@ def get_version(path): url='https://github.com/tartley/colorama', license='BSD', packages=[NAME], - python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*', + python_requires='>=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*', # see classifiers https://pypi.org/pypi?%3Aaction=list_classifiers classifiers=[ 'Development Status :: 5 - Production/Stable', @@ -53,9 +53,10 @@ def get_version(path): 'Programming Language :: Python :: 2', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3', - 'Programming Language :: Python :: 3.4', 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', + 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', 'Programming Language :: Python :: Implementation :: CPython', 'Programming Language :: Python :: Implementation :: PyPy', 'Topic :: Terminals', diff --git a/tox.ini b/tox.ini index 00c61112..1a577e90 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py34, py35, py36, pypy +envlist = py27, py35, py36, py37, py38, pypy [testenv] deps = mock