Version 3.6.0 and update travis python versions
This commit is contained in:
parent
8368956f86
commit
ede941cf1a
5 changed files with 13 additions and 8 deletions
|
|
@ -2,7 +2,8 @@ language: python
|
|||
python:
|
||||
- 2.6
|
||||
- 2.7
|
||||
- 3.3
|
||||
- 3.5
|
||||
- 3.6
|
||||
env:
|
||||
global:
|
||||
- secure: USjLDneiXlVvEjkUVqTt+LBi0XJ4QhkRcJzqVXA9gEau1NTjAkNTPmHjUbOygp0dkfoV0uWrZKCw6fL1g+HJgWl0vHeHzcNl4mUkA+OwkGFHgaeIhvUfnyyJA8P3Zm21XHC+ehzMpEFN5fVNNhREjnRj+CXMc0FgA6knwBRobu4=
|
||||
|
|
|
|||
|
|
@ -3,6 +3,11 @@
|
|||
History
|
||||
-------
|
||||
|
||||
3.6.0 (2017-23-08)
|
||||
++++++++++++++++++
|
||||
- Improve replacing of entities with links in `html_for_tweet()`
|
||||
- Update classifiers for PyPI
|
||||
|
||||
3.5.0 (2017-06-06)
|
||||
++++++++++++++++++
|
||||
- Added support for "symbols" in `Twython.html_for_tweet()`
|
||||
|
|
|
|||
|
|
@ -50,9 +50,9 @@ copyright = u'2013, Ryan McGrath'
|
|||
# built documents.
|
||||
#
|
||||
# The short X.Y version.
|
||||
version = '3.5.0'
|
||||
version = '3.6.0'
|
||||
# The full version, including alpha/beta/rc tags.
|
||||
release = '3.5.0'
|
||||
release = '3.6.0'
|
||||
|
||||
# The language for content autogenerated by Sphinx. Refer to documentation
|
||||
# for a list of supported languages.
|
||||
|
|
|
|||
5
setup.py
5
setup.py
|
|
@ -9,7 +9,7 @@ except ImportError:
|
|||
from distutils.core import setup
|
||||
|
||||
__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
|
||||
__version__ = '3.5.0'
|
||||
__version__ = '3.6.0'
|
||||
|
||||
packages = [
|
||||
'twython',
|
||||
|
|
@ -45,8 +45,7 @@ setup(
|
|||
'Programming Language :: Python',
|
||||
'Programming Language :: Python :: 2.7',
|
||||
'Programming Language :: Python :: 3',
|
||||
'Programming Language :: Python :: 3.3',
|
||||
'Programming Language :: Python :: 3.4',
|
||||
'Programming Language :: Python :: 3.5',
|
||||
'Programming Language :: Python :: 3.6',
|
||||
]
|
||||
)
|
||||
|
|
|
|||
|
|
@ -19,7 +19,7 @@ Questions, comments? ryan@venodesigns.net
|
|||
"""
|
||||
|
||||
__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
|
||||
__version__ = '3.5.0'
|
||||
__version__ = '3.6.0'
|
||||
|
||||
from .api import Twython
|
||||
from .streaming import TwythonStreamer
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue