From: Audrey Roy Greenfeld Date: Wed, 25 Nov 2015 01:42:11 +0000 (-0800) Subject: Use more modern SVG badges and fix their links. X-Git-Tag: 1.3.0~1 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=bd8f72b1e55f35d03ac0d37ff27764eeb853390d;p=cached-property.git Use more modern SVG badges and fix their links. --- diff --git a/README.rst b/README.rst index 50275fc..cebe4a2 100644 --- a/README.rst +++ b/README.rst @@ -2,10 +2,10 @@ cached-property =============================== -.. image:: https://badge.fury.io/py/cached-property.png - :target: http://badge.fury.io/py/cached-property +.. image:: https://img.shields.io/pypi/v/cached-property.svg + :target: https://pypi.python.org/pypi/cached-property -.. image:: https://travis-ci.org/pydanny/cached-property.png?branch=master +.. image:: https://img.shields.io/travis/pydanny/cached-property/master.svg :target: https://travis-ci.org/pydanny/cached-property @@ -21,7 +21,7 @@ Why? How to use it -------------- -Let's define a class with an expensive property. Every time you stay there the +Let's define a class with an expensive property. Every time you stay there the price goes up by $50! .. code-block:: python @@ -33,7 +33,7 @@ price goes up by $50! @property def boardwalk(self): - # In reality, this might represent a database call or time + # In reality, this might represent a database call or time # intensive task like calling a third-party API. self.boardwalk_price += 50 return self.boardwalk_price