Skip to content

Commit 9575eb4

Browse files
committed
Fix a vulnerability issue that effects urllib3 library
urllib3 (below 1.26.5) is vulnerable to Denial Of Service (DoS)
1 parent 15d1bde commit 9575eb4

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ certifi >= 14.05.14
22
six >= 1.10
33
python_dateutil >= 2.5.3
44
setuptools >= 21.0.0
5-
urllib3 >= 1.26.2
5+
urllib3 >= 1.26.5
66
tenacity >= 5.0.4

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
# prerequisite: setuptools
2525
# http://pypi.python.org/pypi/setuptools
2626

27-
REQUIRES = ["urllib3 >= 1.26.2", "six >= 1.10", "certifi", "python-dateutil", "setuptools >= 21.0.0", "tenacity >= 5.0.4"]
27+
REQUIRES = ["urllib3 >= 1.26.5", "six >= 1.10", "certifi", "python-dateutil", "setuptools >= 21.0.0", "tenacity >= 5.0.4"]
2828

2929
with open("README.md", "r") as fh:
3030
long_description = fh.read()

templates/README_onlypackage.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ This python library package is generated without supporting files like setup.py
2525

2626
To be able to use it, you will need these dependencies in your own package that uses this library:
2727

28-
* urllib3 >= 1.26.2
28+
* urllib3 >= 1.26.5
2929
* six >= 1.10
3030
* certifi
3131
* python-dateutil

templates/requirements.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ certifi >= 14.05.14
22
six >= 1.10
33
python_dateutil >= 2.5.3
44
setuptools >= 21.0.0
5-
urllib3 >= 1.26.2
5+
urllib3 >= 1.26.5
66
tenacity >= 5.0.4

templates/setup.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ VERSION = "{{packageVersion}}"
1818
# prerequisite: setuptools
1919
# http://pypi.python.org/pypi/setuptools
2020

21-
REQUIRES = ["urllib3 >= 1.26.2", "six >= 1.10", "certifi", "python-dateutil", "setuptools >= 21.0.0", "tenacity >= 5.0.4"]
21+
REQUIRES = ["urllib3 >= 1.26.5", "six >= 1.10", "certifi", "python-dateutil", "setuptools >= 21.0.0", "tenacity >= 5.0.4"]
2222
{{#asyncio}}
2323
REQUIRES.append("aiohttp >= 3.0.0")
2424
{{/asyncio}}

0 commit comments

Comments
 (0)