Skip to content

Commit ea8a3c3

Browse files
Merge pull request #1065 from allmightyspiff/1064
updating requests and urllib3 to address CVE-2018-18074
2 parents 8a755be + 5fb8fb0 commit ea8a3c3

File tree

3 files changed

+17
-11
lines changed

3 files changed

+17
-11
lines changed

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setup(
1616
name='SoftLayer',
17-
version='5.6.0',
17+
version='5.6.1',
1818
description=DESCRIPTION,
1919
long_description=LONG_DESCRIPTION,
2020
author='SoftLayer Technologies, Inc.',
@@ -33,12 +33,12 @@
3333
'six >= 1.7.0',
3434
'ptable >= 0.9.2',
3535
'click >= 7',
36-
'requests == 2.19.1',
36+
'requests >= 2.20.0',
3737
'prompt_toolkit >= 0.53',
3838
'pygments >= 2.0.0',
39-
'urllib3 == 1.22'
39+
'urllib3 >= 1.24'
4040
],
41-
keywords=['softlayer', 'cloud'],
41+
keywords=['softlayer', 'cloud', 'slcli'],
4242
classifiers=[
4343
'Environment :: Console',
4444
'Environment :: Web Environment',

tools/requirements.txt

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1-
requests == 2.19.1
2-
click >= 5, < 7
3-
prettytable >= 0.7.0
41
six >= 1.7.0
5-
prompt_toolkit
6-
urllib3 == 1.22
2+
ptable >= 0.9.2
3+
click >= 7
4+
requests >= 2.20.0
5+
prompt_toolkit >= 0.53
6+
pygments >= 2.0.0
7+
urllib3 >= 1.24

tools/test-requirements.txt

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,10 @@ pytest-cov
44
mock
55
sphinx
66
testtools
7-
urllib3 == 1.22
8-
requests == 2.19.1
7+
six >= 1.7.0
8+
ptable >= 0.9.2
9+
click >= 7
10+
requests >= 2.20.0
11+
prompt_toolkit >= 0.53
12+
pygments >= 2.0.0
13+
urllib3 >= 1.24

0 commit comments

Comments
 (0)