Version 3.6.0 and update travis python versions

This commit is contained in:
Mike Helmick 2017-08-23 11:29:20 -04:00
parent 8368956f86
commit ede941cf1a
5 changed files with 13 additions and 8 deletions

View file

@ -2,7 +2,8 @@ language: python
python: python:
- 2.6 - 2.6
- 2.7 - 2.7
- 3.3 - 3.5
- 3.6
env: env:
global: global:
- secure: USjLDneiXlVvEjkUVqTt+LBi0XJ4QhkRcJzqVXA9gEau1NTjAkNTPmHjUbOygp0dkfoV0uWrZKCw6fL1g+HJgWl0vHeHzcNl4mUkA+OwkGFHgaeIhvUfnyyJA8P3Zm21XHC+ehzMpEFN5fVNNhREjnRj+CXMc0FgA6knwBRobu4= - secure: USjLDneiXlVvEjkUVqTt+LBi0XJ4QhkRcJzqVXA9gEau1NTjAkNTPmHjUbOygp0dkfoV0uWrZKCw6fL1g+HJgWl0vHeHzcNl4mUkA+OwkGFHgaeIhvUfnyyJA8P3Zm21XHC+ehzMpEFN5fVNNhREjnRj+CXMc0FgA6knwBRobu4=

View file

@ -3,6 +3,11 @@
History 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) 3.5.0 (2017-06-06)
++++++++++++++++++ ++++++++++++++++++
- Added support for "symbols" in `Twython.html_for_tweet()` - Added support for "symbols" in `Twython.html_for_tweet()`

View file

@ -50,9 +50,9 @@ copyright = u'2013, Ryan McGrath'
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '3.5.0' version = '3.6.0'
# The full version, including alpha/beta/rc tags. # 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 # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.

View file

@ -9,7 +9,7 @@ except ImportError:
from distutils.core import setup from distutils.core import setup
__author__ = 'Ryan McGrath <ryan@venodesigns.net>' __author__ = 'Ryan McGrath <ryan@venodesigns.net>'
__version__ = '3.5.0' __version__ = '3.6.0'
packages = [ packages = [
'twython', 'twython',
@ -45,8 +45,7 @@ setup(
'Programming Language :: Python', 'Programming Language :: Python',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3', 'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
] ]
) )

View file

@ -19,7 +19,7 @@ Questions, comments? ryan@venodesigns.net
""" """
__author__ = 'Ryan McGrath <ryan@venodesigns.net>' __author__ = 'Ryan McGrath <ryan@venodesigns.net>'
__version__ = '3.5.0' __version__ = '3.6.0'
from .api import Twython from .api import Twython
from .streaming import TwythonStreamer from .streaming import TwythonStreamer