New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details
Socket
Book a DemoSign in
Socket

cached-property

Package Overview
Dependencies
Maintainers
1
Versions
19
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cached-property - pypi Package Compare versions

Comparing version
1.4.2
to
1.4.3
+1
-0
AUTHORS.rst

@@ -21,1 +21,2 @@ =======

* Volker Braun (@vbraun)
* Anthony Sottile (@asottile)
+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 @@

@@ -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 @@

@@ -116,2 +116,3 @@ ============

$ python -m unittest tests.test_cached-property
$ python -m unittest tests.test_cached-property

@@ -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 @@

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 @@

@@ -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

@@ -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/*")