Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ This python library package is generated without supporting files like setup.py

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

* urllib3 >= 1.15
* urllib3 >= 1.15, < 2.6
* six >= 1.10
* certifi
* python-dateutil
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ This python library package is generated without supporting files like setup.py

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

* urllib3 >= 1.15
* urllib3 >= 1.15, < 2.6
* six >= 1.10
* certifi
* python-dateutil
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ future; python_version<="2.7"
six >= 1.10
python_dateutil >= 2.5.3
setuptools >= 21.0.0
urllib3 >= 1.15.1
urllib3 >= 1.15.1, < 2.6
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ VERSION = "{{packageVersion}}"
# http://pypi.python.org/pypi/setuptools

REQUIRES = [
"urllib3 >= 1.15",
"urllib3>=1.15,<2.6",
"six >= 1.10",
"certifi",
"python-dateutil",
Expand Down
2 changes: 1 addition & 1 deletion openapi-generator/templates/python/requirements.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ future; python_version<="2.7"
six >= 1.10
python_dateutil >= 2.5.3
setuptools >= 21.0.0
urllib3 >= 1.15.1
urllib3 >= 1.15.1, < 2.6
2 changes: 1 addition & 1 deletion openapi-generator/templates/python/setup.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ VERSION = "{{packageVersion}}"
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
REQUIRES = ["urllib3>=1.15,<2.6", "six >= 1.10", "certifi", "python-dateutil"]
{{#asyncio}}
REQUIRES.append("aiohttp >= 3.0.0")
{{/asyncio}}
Expand Down
Loading