File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,13 @@ Install Twython via pip:
32
32
$ pip install twython
33
33
```
34
34
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:
36
42
37
43
``` bash
38
44
git clone git://github.com/ryanmcgrath/twython.git
Original file line number Diff line number Diff line change 9
9
from distutils .core import setup
10
10
11
11
__author__ = 'Ryan McGrath <ryan@rymc.io>'
12
- __version__ = '3.9.0 '
12
+ __version__ = '3.9.1 '
13
13
14
14
packages = [
15
15
'twython' ,
Original file line number Diff line number Diff line change 19
19
"""
20
20
21
21
__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
22
- __version__ = '3.9.0 '
22
+ __version__ = '3.9.1 '
23
23
24
24
from .api import Twython
25
25
from .streaming import TwythonStreamer
You can’t perform that action at this time.
0 commit comments