cached-property
Advanced tools
| Metadata-Version: 1.1 | ||
| Name: cached-property | ||
| Version: 1.3.0 | ||
| Version: 1.3.1 | ||
| Summary: A decorator for caching properties in classes. | ||
@@ -196,3 +196,3 @@ Home-page: https://github.com/pydanny/cached-property | ||
| * Pip, Django, Werkzueg, Bottle, Pyramid, and Zope for having their own implementations. This package uses an implementation that matches the Bottle version. | ||
| * Pip, Django, Werkzueg, Bottle, Pyramid, and Zope for having their own implementations. This package originally used an implementation that matched the Bottle version. | ||
| * Reinout Van Rees for pointing out the `cached_property` decorator to me. | ||
@@ -206,11 +206,29 @@ * My awesome wife `@audreyr`_ who created `cookiecutter`_, which meant rolling this out took me just 15 minutes. | ||
| Support This Project | ||
| --------------------------- | ||
| This project is maintained by volunteers. Support their efforts by spreading the word about: | ||
| .. image:: https://s3.amazonaws.com/tsacademy/images/tsa-logo-250x60-transparent-01.png | ||
| :name: Two Scoops Academy | ||
| :align: center | ||
| :alt: Two Scoops Academy | ||
| :target: http://www.twoscoops.academy/ | ||
| History | ||
| ------- | ||
| 1.3.1 (2017-09-21) | ||
| ++++++++++++++++++ | ||
| * Validate for Python 3.6 | ||
| 1.3.0 (2015-11-24) | ||
| ++++++++++++++++++ | ||
| * Drop some non-ASCII characters from HISTORY.rst, thanks to @AdamWill | ||
| * Added official support for Python 3.5, thanks to @pydanny and @audreyr | ||
@@ -217,0 +235,0 @@ * Removed confusingly placed lock from example, thanks to @ionelmc |
@@ -5,3 +5,3 @@ # -*- coding: utf-8 -*- | ||
| __email__ = 'pydanny@gmail.com' | ||
| __version__ = '1.3.0' | ||
| __version__ = '1.3.1' | ||
| __license__ = 'BSD' | ||
@@ -8,0 +8,0 @@ |
+7
-0
@@ -6,5 +6,12 @@ .. :changelog: | ||
| 1.3.1 (2017-09-21) | ||
| ++++++++++++++++++ | ||
| * Validate for Python 3.6 | ||
| 1.3.0 (2015-11-24) | ||
| ++++++++++++++++++ | ||
| * Drop some non-ASCII characters from HISTORY.rst, thanks to @AdamWill | ||
| * Added official support for Python 3.5, thanks to @pydanny and @audreyr | ||
@@ -11,0 +18,0 @@ * Removed confusingly placed lock from example, thanks to @ionelmc |
+20
-2
| Metadata-Version: 1.1 | ||
| Name: cached-property | ||
| Version: 1.3.0 | ||
| Version: 1.3.1 | ||
| Summary: A decorator for caching properties in classes. | ||
@@ -196,3 +196,3 @@ Home-page: https://github.com/pydanny/cached-property | ||
| * Pip, Django, Werkzueg, Bottle, Pyramid, and Zope for having their own implementations. This package uses an implementation that matches the Bottle version. | ||
| * Pip, Django, Werkzueg, Bottle, Pyramid, and Zope for having their own implementations. This package originally used an implementation that matched the Bottle version. | ||
| * Reinout Van Rees for pointing out the `cached_property` decorator to me. | ||
@@ -206,11 +206,29 @@ * My awesome wife `@audreyr`_ who created `cookiecutter`_, which meant rolling this out took me just 15 minutes. | ||
| Support This Project | ||
| --------------------------- | ||
| This project is maintained by volunteers. Support their efforts by spreading the word about: | ||
| .. image:: https://s3.amazonaws.com/tsacademy/images/tsa-logo-250x60-transparent-01.png | ||
| :name: Two Scoops Academy | ||
| :align: center | ||
| :alt: Two Scoops Academy | ||
| :target: http://www.twoscoops.academy/ | ||
| History | ||
| ------- | ||
| 1.3.1 (2017-09-21) | ||
| ++++++++++++++++++ | ||
| * Validate for Python 3.6 | ||
| 1.3.0 (2015-11-24) | ||
| ++++++++++++++++++ | ||
| * Drop some non-ASCII characters from HISTORY.rst, thanks to @AdamWill | ||
| * Added official support for Python 3.5, thanks to @pydanny and @audreyr | ||
@@ -217,0 +235,0 @@ * Removed confusingly placed lock from example, thanks to @ionelmc |
+12
-1
@@ -188,3 +188,3 @@ =============================== | ||
| * Pip, Django, Werkzueg, Bottle, Pyramid, and Zope for having their own implementations. This package uses an implementation that matches the Bottle version. | ||
| * Pip, Django, Werkzueg, Bottle, Pyramid, and Zope for having their own implementations. This package originally used an implementation that matched the Bottle version. | ||
| * Reinout Van Rees for pointing out the `cached_property` decorator to me. | ||
@@ -197,1 +197,12 @@ * My awesome wife `@audreyr`_ who created `cookiecutter`_, which meant rolling this out took me just 15 minutes. | ||
| .. _`cookiecutter`: https://github.com/audreyr/cookiecutter | ||
| Support This Project | ||
| --------------------------- | ||
| This project is maintained by volunteers. Support their efforts by spreading the word about: | ||
| .. image:: https://s3.amazonaws.com/tsacademy/images/tsa-logo-250x60-transparent-01.png | ||
| :name: Two Scoops Academy | ||
| :align: center | ||
| :alt: Two Scoops Academy | ||
| :target: http://www.twoscoops.academy/ |
+0
-1
@@ -7,3 +7,2 @@ [wheel] | ||
| tag_date = 0 | ||
| tag_svn_revision = 0 | ||
+9
-3
@@ -6,2 +6,3 @@ #!/usr/bin/env python | ||
| import sys | ||
| import codecs | ||
@@ -13,7 +14,12 @@ try: | ||
| __version__ = '1.3.0' | ||
| __version__ = '1.3.1' | ||
| readme = open('README.rst').read() | ||
| history = open('HISTORY.rst').read().replace('.. :changelog:', '') | ||
| def read(fname): | ||
| return codecs.open( | ||
| os.path.join(os.path.dirname(__file__), fname), 'r', 'utf-8').read() | ||
| readme = read('README.rst') | ||
| history = read('HISTORY.rst').replace('.. :changelog:', '') | ||
| if sys.argv[-1] == 'publish': | ||
@@ -20,0 +26,0 @@ os.system('python setup.py sdist bdist_wheel upload') |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
48693
4.02%336
1.2%