From 9275e626a28b9318a5d69e6b53d6e8ace35c864f Mon Sep 17 00:00:00 2001 From: Audrey Roy Greenfeld Date: Thu, 21 Sep 2017 17:04:03 -0700 Subject: [PATCH] Update to Python 3.6 --- .travis.yml | 1 + HISTORY.rst | 6 ++++++ cached_property.py | 2 +- setup.py | 2 +- tox.ini | 2 +- 5 files changed, 10 insertions(+), 3 deletions(-) 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 = -- 2.30.2