3.9.1
This commit is contained in:
parent
ecc5f103f4
commit
0c40560428
3 changed files with 9 additions and 3 deletions
|
|
@ -32,7 +32,13 @@ Install Twython via pip:
|
||||||
$ pip install twython
|
$ 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
|
```bash
|
||||||
git clone git://github.com/ryanmcgrath/twython.git
|
git clone git://github.com/ryanmcgrath/twython.git
|
||||||
|
|
|
||||||
2
setup.py
2
setup.py
|
|
@ -9,7 +9,7 @@ except ImportError:
|
||||||
from distutils.core import setup
|
from distutils.core import setup
|
||||||
|
|
||||||
__author__ = 'Ryan McGrath <ryan@rymc.io>'
|
__author__ = 'Ryan McGrath <ryan@rymc.io>'
|
||||||
__version__ = '3.9.0'
|
__version__ = '3.9.1'
|
||||||
|
|
||||||
packages = [
|
packages = [
|
||||||
'twython',
|
'twython',
|
||||||
|
|
|
||||||
|
|
@ -19,7 +19,7 @@ Questions, comments? ryan@venodesigns.net
|
||||||
"""
|
"""
|
||||||
|
|
||||||
__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
|
__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
|
||||||
__version__ = '3.9.0'
|
__version__ = '3.9.1'
|
||||||
|
|
||||||
from .api import Twython
|
from .api import Twython
|
||||||
from .streaming import TwythonStreamer
|
from .streaming import TwythonStreamer
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue