Skip to content

Commit 0c40560

Browse files
committed
3.9.1
1 parent ecc5f10 commit 0c40560

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,13 @@ Install Twython via pip:
3232
$ pip install twython
3333
```
3434

35-
Or, if you want the code that is currently on GitHub
35+
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:
36+
37+
```
38+
pip install twython==3.7.0`
39+
```
40+
41+
Or, if you want the code that is currently on GitHub:
3642

3743
```bash
3844
git clone git://github.com/ryanmcgrath/twython.git

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from distutils.core import setup
1010

1111
__author__ = 'Ryan McGrath <ryan@rymc.io>'
12-
__version__ = '3.9.0'
12+
__version__ = '3.9.1'
1313

1414
packages = [
1515
'twython',

twython/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
"""
2020

2121
__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
22-
__version__ = '3.9.0'
22+
__version__ = '3.9.1'
2323

2424
from .api import Twython
2525
from .streaming import TwythonStreamer

0 commit comments

Comments
 (0)