Skip to content

Commit

Permalink
Version 3.6.0 and update travis python versions
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelhelmick committed Aug 23, 2017
1 parent 8368956 commit ede941c
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 8 deletions.
5 changes: 3 additions & 2 deletions .travis.yml
Expand Up @@ -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=
Expand All @@ -17,7 +18,7 @@ env:
- TEST_LIST_SLUG=team
- TEST_LIST_OWNER_SCREEN_NAME=twitterapi
- ACCESS_TOKEN_B64=U2FsdGVkX18QdBhvMNshM4PGy04tU3HLwKP+nNSoNZHKsvGLjELcWEXN2LIu/T+yngX1vGONf9lo14ElnfS4k7sfhiru8phR4+rZuBVP3bDvC2A6fXJuhuLqNhBrWqg32WQewvxLWDWBoKmnvRHg5b74GHh+IN/12tU0cBF2HK8=
install:
install:
- pip install -r requirements.txt
- if [[ $TRAVIS_PYTHON_VERSION == '2.6' ]]; then pip install unittest2; fi
script: nosetests -v -w tests/ --logging-filter="twython" --with-cov --cov twython --cov-config .coveragerc --cov-report term-missing
Expand Down
5 changes: 5 additions & 0 deletions HISTORY.rst
Expand Up @@ -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()`
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Expand Up @@ -50,9 +50,9 @@
# 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.
Expand Down
5 changes: 2 additions & 3 deletions setup.py
Expand Up @@ -9,7 +9,7 @@
from distutils.core import setup

__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
__version__ = '3.5.0'
__version__ = '3.6.0'

packages = [
'twython',
Expand Down Expand Up @@ -45,8 +45,7 @@
'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',
]
)
2 changes: 1 addition & 1 deletion twython/__init__.py
Expand Up @@ -19,7 +19,7 @@
"""

__author__ = 'Ryan McGrath <ryan@venodesigns.net>'
__version__ = '3.5.0'
__version__ = '3.6.0'

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

0 comments on commit ede941c

Please sign in to comment.