Skip to content
This repository was archived by the owner on Aug 28, 2025. It is now read-only.

Commit 1bc825b

Browse files
committed
Fix issue #37
1 parent 03ead49 commit 1bc825b

File tree

4 files changed

+10
-4
lines changed

4 files changed

+10
-4
lines changed

changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@
55
Changelog
66
***************
77

8+
.. _1.3.5:
9+
10+
Version 1.3.5
11+
-------------
12+
* move from urllib3 1.25 to 1.24.2 because of the issue#37
13+
814
.. _1.3.4:
915

1016
Version 1.3.4

requirements.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22
mock
33
ipython
44
oauth2==1.9.0.post1
5-
urllib3==1.25
5+
urllib3==1.24.2
66
httplib2==0.10.3

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
README = readme.read()
1212
readme.close()
1313

14-
VERSION = (1, 3, 4, 0, 0)
14+
VERSION = (1, 3, 5, 0, 0)
1515

1616

1717
def get_version():
@@ -76,7 +76,7 @@ def run(self):
7676
author_email='python@upwork.com',
7777
maintainer='Maksym Novozhylov',
7878
maintainer_email='mnovozhilov@upwork.com',
79-
install_requires=['oauth2==1.9.0.post1', 'urllib3==1.25.3'],
79+
install_requires=['oauth2==1.9.0.post1', 'urllib3==1.24.2'],
8080
packages=find_packages(),
8181
license='BSD',
8282
download_url='http://github.com/upwork/python-upwork',

upwork/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
1414
"""
1515

16-
VERSION = '1.3.4'
16+
VERSION = '1.3.5'
1717

1818

1919
def get_version():

0 commit comments

Comments
 (0)