From: Daniel Date: Tue, 31 Jul 2018 15:47:51 +0000 (-0700) Subject: Update to add Python 3.7 and remove 3.3 X-Git-Tag: 1.5.0~4 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=cc8c426fc156d3ed035ae14a74c4a14cee5dec6b;p=cached-property.git Update to add Python 3.7 and remove 3.3 --- 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 =