diff --git a/README.md b/README.md index fe0aa1b..853136e 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,13 @@ Install Twython via pip: $ pip install twython ``` -Or, if you want the code that is currently on GitHub +If you're on a legacy project that needs Python 2.7 support, you can install the last version of Twython that supported 2.7: + +``` +pip install twython==3.7.0` +``` + +Or, if you want the code that is currently on GitHub: ```bash git clone git://github.com/ryanmcgrath/twython.git diff --git a/setup.py b/setup.py index 4c0cc12..a3600de 100755 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ from distutils.core import setup __author__ = 'Ryan McGrath ' -__version__ = '3.9.0' +__version__ = '3.9.1' packages = [ 'twython', diff --git a/twython/__init__.py b/twython/__init__.py index e01d85d..7d25ef3 100644 --- a/twython/__init__.py +++ b/twython/__init__.py @@ -19,7 +19,7 @@ """ __author__ = 'Ryan McGrath ' -__version__ = '3.9.0' +__version__ = '3.9.1' from .api import Twython from .streaming import TwythonStreamer