From: Audrey Roy Greenfeld Date: Fri, 22 Sep 2017 00:04:03 +0000 (-0700) Subject: Update to Python 3.6 X-Git-Tag: 1.3.1^0 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9275e626a28b9318a5d69e6b53d6e8ace35c864f;p=cached-property.git Update to Python 3.6 --- diff --git a/.travis.yml b/.travis.yml index 9493da9..dcc2dba 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ sudo: false language: python python: + - "3.6" - "3.5" - "3.4" - "3.3" diff --git a/HISTORY.rst b/HISTORY.rst index 1d1941e..f27cab8 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,6 +3,12 @@ History ------- +1.3.1 (2017-09-21) +++++++++++++++++++ + +* Validate for Python 3.6 + + 1.3.0 (2015-11-24) ++++++++++++++++++ diff --git a/cached_property.py b/cached_property.py index 6a342d5..7e8bebe 100644 --- a/cached_property.py +++ b/cached_property.py @@ -2,7 +2,7 @@ __author__ = 'Daniel Greenfeld' __email__ = 'pydanny@gmail.com' -__version__ = '1.3.0' +__version__ = '1.3.1' __license__ = 'BSD' from time import time diff --git a/setup.py b/setup.py index bd9410e..2b670b8 100755 --- a/setup.py +++ b/setup.py @@ -10,7 +10,7 @@ try: except ImportError: from distutils.core import setup -__version__ = '1.3.0' +__version__ = '1.3.1' def read(fname): diff --git a/tox.ini b/tox.ini index 5cf0840..33e856e 100644 --- a/tox.ini +++ b/tox.ini @@ -1,5 +1,5 @@ [tox] -envlist = py26, py27, py33, py34, py35 +envlist = py26, py27, py33, py34, py35, py36 [testenv] setenv =