From cc8c426fc156d3ed035ae14a74c4a14cee5dec6b Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 31 Jul 2018 08:47:51 -0700 Subject: [PATCH] Update to add Python 3.7 and remove 3.3 --- .travis.yml | 2 +- HISTORY.rst | 6 ++++++ setup.py | 2 +- tox.ini | 2 +- 4 files changed, 9 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index 0fe543e..1d7f26a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,10 +3,10 @@ sudo: false language: python python: + - "3.7" - "3.6" - "3.5" - "3.4" - - "3.3" - "2.7" - "pypy" diff --git a/HISTORY.rst b/HISTORY.rst index d7f06b5..3192806 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- +1.4.3 (2018-07-31) +++++++++++++++++++ + +* Added formal support for Python 3.7 +* Removed formal support for Python 3.3 + 1.4.2 (2018-04-08) ++++++++++++++++++ diff --git a/setup.py b/setup.py index bb1ff66..3ad0ac9 100755 --- a/setup.py +++ b/setup.py @@ -50,9 +50,9 @@ setup( "Programming Language :: Python :: 2", "Programming Language :: Python :: 2.7", "Programming Language :: Python :: 3", - "Programming Language :: Python :: 3.3", "Programming Language :: Python :: 3.4", "Programming Language :: Python :: 3.5", "Programming Language :: Python :: 3.6", + "Programming Language :: Python :: 3.7" ], ) diff --git a/tox.ini b/tox.ini index 4f94c9b..9d7c8b3 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py27, py33, py34, py35, py36 +envlist = py27, py34, py35, py36, py37 [testenv] setenv = -- 2.30.2