Skip to content

Commit

Permalink
3.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanmcgrath committed Jul 16, 2021
1 parent ecc5f10 commit 0c40560
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
8 changes: 7 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from distutils.core import setup

__author__ = 'Ryan McGrath <[email protected]>'
__version__ = '3.9.0'
__version__ = '3.9.1'

packages = [
'twython',
Expand Down
2 changes: 1 addition & 1 deletion twython/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"""

__author__ = 'Ryan McGrath <[email protected]>'
__version__ = '3.9.0'
__version__ = '3.9.1'

from .api import Twython
from .streaming import TwythonStreamer
Expand Down

0 comments on commit 0c40560

Please sign in to comment.