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.3.0
to
1.3.1
+20
-2
cached_property.egg-info/PKG-INFO
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

+1
-1

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

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

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

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

@@ -7,3 +7,2 @@ [wheel]

tag_date = 0
tag_svn_revision = 0

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