cached-property
Advanced tools
+1
-0
@@ -21,1 +21,2 @@ ======= | ||
| * Volker Braun (@vbraun) | ||
| * Anthony Sottile (@asottile) |
| Metadata-Version: 1.1 | ||
| Name: cached-property | ||
| Version: 1.4.2 | ||
| Version: 1.4.3 | ||
| Summary: A decorator for caching properties in classes. | ||
@@ -9,3 +9,2 @@ Home-page: https://github.com/pydanny/cached-property | ||
| License: BSD | ||
| Description-Content-Type: UNKNOWN | ||
| Description: =============================== | ||
@@ -19,3 +18,3 @@ cached-property | ||
| .. image:: https://img.shields.io/travis/pydanny/cached-property/master.svg | ||
| :target: https://travis-ci.org/pydanny/cached-property | ||
| :target: https://travis-ci.org/pydanny/cached-property | ||
@@ -272,8 +271,13 @@ .. image:: https://img.shields.io/badge/code%20style-black-000000.svg | ||
| 1.4.2 (2018-03-08) | ||
| 1.4.3 (2018-06-14) | ||
| ++++++++++++++++++ | ||
| * Catch `SyntaxError` from asyncio import on older versions of Python, thanks to @asottile | ||
| 1.4.2 (2018-04-08) | ||
| ++++++++++++++++++ | ||
| * Really fixed tests, thanks to @pydanny | ||
| 1.4.1 (2018-03-08) | ||
| 1.4.1 (2018-04-08) | ||
| ++++++++++++++++++ | ||
@@ -280,0 +284,0 @@ |
@@ -5,3 +5,3 @@ # -*- coding: utf-8 -*- | ||
| __email__ = "pydanny@gmail.com" | ||
| __version__ = "1.4.2" | ||
| __version__ = "1.4.3" | ||
| __license__ = "BSD" | ||
@@ -14,3 +14,3 @@ | ||
| import asyncio | ||
| except ImportError: | ||
| except (ImportError, SyntaxError): | ||
| asyncio = None | ||
@@ -17,0 +17,0 @@ |
+2
-1
@@ -116,2 +116,3 @@ ============ | ||
| $ python -m unittest tests.test_cached-property | ||
| $ python -m unittest tests.test_cached-property | ||
+7
-2
@@ -6,8 +6,13 @@ .. :changelog: | ||
| 1.4.2 (2018-03-08) | ||
| 1.4.3 (2018-06-14) | ||
| ++++++++++++++++++ | ||
| * Catch `SyntaxError` from asyncio import on older versions of Python, thanks to @asottile | ||
| 1.4.2 (2018-04-08) | ||
| ++++++++++++++++++ | ||
| * Really fixed tests, thanks to @pydanny | ||
| 1.4.1 (2018-03-08) | ||
| 1.4.1 (2018-04-08) | ||
| ++++++++++++++++++ | ||
@@ -14,0 +19,0 @@ |
+9
-5
| Metadata-Version: 1.1 | ||
| Name: cached-property | ||
| Version: 1.4.2 | ||
| Version: 1.4.3 | ||
| Summary: A decorator for caching properties in classes. | ||
@@ -9,3 +9,2 @@ Home-page: https://github.com/pydanny/cached-property | ||
| License: BSD | ||
| Description-Content-Type: UNKNOWN | ||
| Description: =============================== | ||
@@ -19,3 +18,3 @@ cached-property | ||
| .. image:: https://img.shields.io/travis/pydanny/cached-property/master.svg | ||
| :target: https://travis-ci.org/pydanny/cached-property | ||
| :target: https://travis-ci.org/pydanny/cached-property | ||
@@ -272,8 +271,13 @@ .. image:: https://img.shields.io/badge/code%20style-black-000000.svg | ||
| 1.4.2 (2018-03-08) | ||
| 1.4.3 (2018-06-14) | ||
| ++++++++++++++++++ | ||
| * Catch `SyntaxError` from asyncio import on older versions of Python, thanks to @asottile | ||
| 1.4.2 (2018-04-08) | ||
| ++++++++++++++++++ | ||
| * Really fixed tests, thanks to @pydanny | ||
| 1.4.1 (2018-03-08) | ||
| 1.4.1 (2018-04-08) | ||
| ++++++++++++++++++ | ||
@@ -280,0 +284,0 @@ |
+1
-1
@@ -9,3 +9,3 @@ =============================== | ||
| .. image:: https://img.shields.io/travis/pydanny/cached-property/master.svg | ||
| :target: https://travis-ci.org/pydanny/cached-property | ||
| :target: https://travis-ci.org/pydanny/cached-property | ||
@@ -12,0 +12,0 @@ .. image:: https://img.shields.io/badge/code%20style-black-000000.svg |
+2
-1
@@ -13,3 +13,3 @@ #!/usr/bin/env python | ||
| __version__ = "1.4.2" | ||
| __version__ = "1.4.3" | ||
@@ -27,2 +27,3 @@ | ||
| if sys.argv[-1] == "publish": | ||
| os.system("rm -rf dist") | ||
| os.system("python setup.py sdist bdist_wheel") | ||
@@ -29,0 +30,0 @@ os.system("twine upload dist/*") |
Alert delta unavailable
Currently unable to show alert delta for PyPI packages.
64362
0.73%548
0.18%