Skip to content

Commit

Permalink
Fix issue upwork#37
Browse files Browse the repository at this point in the history
  • Loading branch information
mnovozhylov committed Aug 10, 2019
1 parent 03ead49 commit 1bc825b
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@
Changelog
***************

.. _1.3.5:

Version 1.3.5
-------------
* move from urllib3 1.25 to 1.24.2 because of the issue#37

.. _1.3.4:

Version 1.3.4
Expand Down
2 changes: 1 addition & 1 deletion requirements.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
mock
ipython
oauth2==1.9.0.post1
urllib3==1.25
urllib3==1.24.2
httplib2==0.10.3
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
README = readme.read()
readme.close()

VERSION = (1, 3, 4, 0, 0)
VERSION = (1, 3, 5, 0, 0)


def get_version():
Expand Down Expand Up @@ -76,7 +76,7 @@ def run(self):
author_email='[email protected]',
maintainer='Maksym Novozhylov',
maintainer_email='[email protected]',
install_requires=['oauth2==1.9.0.post1', 'urllib3==1.25.3'],
install_requires=['oauth2==1.9.0.post1', 'urllib3==1.24.2'],
packages=find_packages(),
license='BSD',
download_url='http://github.com/upwork/python-upwork',
Expand Down
2 changes: 1 addition & 1 deletion upwork/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"""

VERSION = '1.3.4'
VERSION = '1.3.5'


def get_version():
Expand Down

0 comments on commit 1bc825b

Please sign in to comment.