Python 3.5 support and history/authors
authorDaniel Roy Greenfeld <pydanny@gmail.com>
Wed, 25 Nov 2015 01:35:02 +0000 (17:35 -0800)
committerDaniel Roy Greenfeld <pydanny@gmail.com>
Wed, 25 Nov 2015 01:35:10 +0000 (17:35 -0800)
.travis.yml
AUTHORS.rst
HISTORY.rst
tox.ini

index 55473e207032cdeee82de1518bf497b6bdb3500a..15488ae1476a60661e4395bf282546eeb661efb1 100644 (file)
@@ -3,6 +3,7 @@
 language: python
 
 python:
+  - "3.5"  
   - "3.4"
   - "3.3"
   - "2.7"
index e9b1888c38625847da44f87047eedb57e454a3a0..5d1f4cf0c57f25c85d0afafdbcd74edd3fbe114f 100644 (file)
@@ -15,3 +15,4 @@ Contributors
 * George Sakkis (@gsakkis)
 * Adam Williamson <awilliam AT redhat DOT com>
 * Ionel Cristian Mărieș (@ionelmc)
+* Malyshev Artem (@proofit404)
index 0feb8ab1110ee689a0f13f9020565ea5ab0655a8..d9b2d469d2a97be988707e5e3cf71a4689ad499c 100644 (file)
@@ -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 e385e61fdfa462fae9cc30625ce87bd32c7d1e09..5cf0840edee48a4091767c50efbab26729b70d7f 100644 (file)
--- 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