From 2c5177acfc23a779dda3a80825d553dfa5b4bf54 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Fri, 27 May 2016 14:30:02 +0100 Subject: [PATCH] link stable instead of latest docs on pypi --- README.rst | 2 +- setup.py | 4 +++- 2 files changed, 4 insertions(+), 2 deletions(-) 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]