Skip to content

Commit

Permalink
Merge pull request #228 from hugovk/add-3.7
Browse files Browse the repository at this point in the history
Add support for Python 3.7 and 3.8, drop EOL 3.4
  • Loading branch information
wiggin15 committed Oct 20, 2019
2 parents 6f8a3aa + 9f03cb6 commit 3729579
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
=====
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand All @@ -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',
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[tox]
envlist = py27, py34, py35, py36, pypy
envlist = py27, py35, py36, py37, py38, pypy

[testenv]
deps = mock
Expand Down

0 comments on commit 3729579

Please sign in to comment.