Browse Source

link stable instead of latest docs on pypi

pull/41/head
Rossen Georgiev 9 years ago
parent
commit
2c5177acfc
  1. 2
      README.rst
  2. 4
      setup.py

2
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/ .. _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 :target: https://pypi.python.org/pypi/steam
:alt: Latest version released on PyPi :alt: Latest version released on PyPi

4
setup.py

@ -7,7 +7,9 @@ import sys
here = path.abspath(path.dirname(__file__)) here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f: 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: with open(path.join(here, 'steam/__init__.py'), encoding='utf-8') as f:
__version__ = f.readline().split('"')[1] __version__ = f.readline().split('"')[1]

Loading…
Cancel
Save