- "3.4"
- "3.3"
- "2.7"
- - "2.6"
- "pypy"
# command to install dependencies, e.g. pip install -r requirements.txt --use-mirrors
Development Lead
----------------
-* Daniel Roy Greenfeld <pydanny@gmail.com>
+* Daniel Roy Greenfeld (@pydanny)
* Audrey Roy Greenfeld (@audreyr)
Contributors
* Adam Williamson <awilliam AT redhat DOT com>
* Ionel Cristian Mărieș (@ionelmc)
* Malyshev Artem (@proofit404)
+* Volker Braun (@vbraun)
2. If the pull request adds functionality, the docs should be updated. Put
your new functionality into a function with a docstring, and add the
feature to the list in README.rst.
-3. The pull request should work for Python 2.6, 2.7, and 3.3, and for PyPy. Check
+3. The pull request should work for Python 2.7, and 3.3, 3.4, 3.5, 3.6 and for PyPy. Check
https://travis-ci.org/pydanny/cached-property/pull_requests
and make sure that the tests pass for all supported Python versions.
History
-------
+1.4.0 (2018-02-25)
+++++++++++++++++++
+
+* Added asyncio support, thanks to @vbraun
+* Remove Python 2.6 support, whose end of life was 5 years ago, thanks to @pydanny
+
+
1.3.1 (2017-09-21)
++++++++++++++++++
__author__ = 'Daniel Greenfeld'
__email__ = 'pydanny@gmail.com'
-__version__ = '1.3.1'
+__version__ = '1.4.0'
__license__ = 'BSD'
from time import time
except ImportError:
from distutils.core import setup
-__version__ = '1.3.1'
+__version__ = '1.4.0'
def read(fname):
'License :: OSI Approved :: BSD License',
'Natural Language :: English',
"Programming Language :: Python :: 2",
- 'Programming Language :: Python :: 2.6',
'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',
],
)
[tox]
-envlist = py26, py27, py33, py34, py35, py36
+envlist = py27, py33, py34, py35, py36
[testenv]
setenv =