diff --git a/README.rst b/README.rst index 62782fa..63f4e85 100644 --- a/README.rst +++ b/README.rst @@ -58,7 +58,7 @@ To run for ``python 2.7`` and ``3.4`` assuming you have them installed:: .. _Steam: https://store.steampowered.com/ -.. |pypi| image:: https://img.shields.io/pypi/v/steam.svg?style=flat&label=latest%20version +.. |pypi| image:: https://img.shields.io/pypi/v/steam.svg?style=flat&label=stable :target: https://pypi.python.org/pypi/steam :alt: Latest version released on PyPi diff --git a/setup.py b/setup.py index 12d0301..fe582dd 100644 --- a/setup.py +++ b/setup.py @@ -7,7 +7,9 @@ import sys here = path.abspath(path.dirname(__file__)) with open(path.join(here, 'README.rst'), encoding='utf-8') as f: - long_description = f.read() + long_description = f.read()\ + .replace('io/en/latest/?badge=latest', 'io/en/stable/?badge=stable')\ + .replace('projects/steam/badge/?version=latest', 'projects/steam/badge/?version=stable') with open(path.join(here, 'steam/__init__.py'), encoding='utf-8') as f: __version__ = f.readline().split('"')[1]