From: Daniel Roy Greenfeld Date: Wed, 25 Nov 2015 01:35:02 +0000 (-0800) Subject: Python 3.5 support and history/authors X-Git-Tag: 1.3.0~6 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=90a36f1b74dad765ff4702b24e6dfe00ca66f4f0;p=cached-property.git Python 3.5 support and history/authors --- diff --git a/.travis.yml b/.travis.yml index 55473e2..15488ae 100644 --- a/.travis.yml +++ b/.travis.yml @@ -3,6 +3,7 @@ language: python python: + - "3.5" - "3.4" - "3.3" - "2.7" diff --git a/AUTHORS.rst b/AUTHORS.rst index e9b1888..5d1f4cf 100644 --- a/AUTHORS.rst +++ b/AUTHORS.rst @@ -15,3 +15,4 @@ Contributors * George Sakkis (@gsakkis) * Adam Williamson * Ionel Cristian Mărieș (@ionelmc) +* Malyshev Artem (@proofit404) diff --git a/HISTORY.rst b/HISTORY.rst index 0feb8ab..d9b2d46 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -3,10 +3,12 @@ History ------- -1.2.1 (2015-11-??) +1.3.0 (2015-11-24) ++++++++++++++++++ +* Added official support for Python 3, thanks to @pydanny * Removed confusingly placed lock from example, thanks to @ionelmc +* Corrected invalidation cache documentation, thanks to @proofit404 1.2.0 (2015-04-28) ++++++++++++++++++ diff --git a/tox.ini b/tox.ini index e385e61..5cf0840 100644 --- a/tox.ini +++ b/tox.ini @@ -1,9 +1,9 @@ [tox] -envlist = py26, py27, py33, py34 +envlist = py26, py27, py33, py34, py35 [testenv] setenv = PYTHONPATH = {toxinidir}:{toxinidir}/cached-property commands = py.test deps = - pytest \ No newline at end of file + pytest