Skip to content

Commit a09e132

Browse files
committed
Merge branch 'urllib3-flexibility' of https://github.com/mike-phillips/openapi-generator into mike-phillips-urllib3-flexibility
2 parents b3e72fe + 127fb53 commit a09e132

File tree

18 files changed

+18
-18
lines changed

18 files changed

+18
-18
lines changed

modules/openapi-generator/src/main/resources/python-pydantic-v1/requirements.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
python_dateutil >= 2.5.3
22
setuptools >= 21.0.0
3-
urllib3 >= 1.25.3, < 2.1.0
3+
urllib3 >= 1.25.3, < 3.0.0
44
pydantic >= 1.10.5, < 2
55
aenum >= 3.1.11
66
{{#asyncio}}

modules/openapi-generator/src/main/resources/python-pydantic-v1/setup.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ PYTHON_REQUIRES = ">=3.7"
1717
{{#apis}}
1818
{{#-last}}
1919
REQUIRES = [
20-
"urllib3 >= 1.25.3, < 2.1.0",
20+
"urllib3 >= 1.25.3, < 3.0.0",
2121
"python-dateutil",
2222
{{#asyncio}}
2323
"aiohttp >= 3.0.0",

modules/openapi-generator/src/main/resources/python/requirements.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
python_dateutil >= 2.5.3
22
setuptools >= 21.0.0
3-
urllib3 >= 1.25.3, < 2.1.0
3+
urllib3 >= 1.25.3, < 3.0.0
44
pydantic >= 2
55
typing-extensions >= 4.7.1
66
{{#asyncio}}

modules/openapi-generator/src/main/resources/python/setup.mustache

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ PYTHON_REQUIRES = ">=3.7"
1717
{{#apis}}
1818
{{#-last}}
1919
REQUIRES = [
20-
"urllib3 >= 1.25.3, < 2.1.0",
20+
"urllib3 >= 1.25.3, < 3.0.0",
2121
"python-dateutil",
2222
{{#asyncio}}
2323
"aiohttp >= 3.0.0",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
python_dateutil >= 2.5.3
22
setuptools >= 21.0.0
3-
urllib3 >= 1.25.3, < 2.1.0
3+
urllib3 >= 1.25.3, < 3.0.0
44
pydantic >= 2
55
typing-extensions >= 4.7.1

samples/client/echo_api/python-disallowAdditionalPropertiesIfNotPresent/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
VERSION = "1.0.0"
2626
PYTHON_REQUIRES = ">=3.7"
2727
REQUIRES = [
28-
"urllib3 >= 1.25.3, < 2.1.0",
28+
"urllib3 >= 1.25.3, < 3.0.0",
2929
"python-dateutil",
3030
"pydantic >= 2",
3131
"typing-extensions >= 4.7.1",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
python_dateutil >= 2.5.3
22
setuptools >= 21.0.0
3-
urllib3 >= 1.25.3, < 2.1.0
3+
urllib3 >= 1.25.3, < 3.0.0
44
pydantic >= 1.10.5, < 2
55
aenum >= 3.1.11

samples/client/echo_api/python-pydantic-v1/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
VERSION = "1.0.0"
2626
PYTHON_REQUIRES = ">=3.7"
2727
REQUIRES = [
28-
"urllib3 >= 1.25.3, < 2.1.0",
28+
"urllib3 >= 1.25.3, < 3.0.0",
2929
"python-dateutil",
3030
"pydantic >= 1.10.5, < 2",
3131
"aenum"
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
python_dateutil >= 2.5.3
22
setuptools >= 21.0.0
3-
urllib3 >= 1.25.3, < 2.1.0
3+
urllib3 >= 1.25.3, < 3.0.0
44
pydantic >= 2
55
typing-extensions >= 4.7.1

samples/client/echo_api/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
VERSION = "1.0.0"
2626
PYTHON_REQUIRES = ">=3.7"
2727
REQUIRES = [
28-
"urllib3 >= 1.25.3, < 2.1.0",
28+
"urllib3 >= 1.25.3, < 3.0.0",
2929
"python-dateutil",
3030
"pydantic >= 2",
3131
"typing-extensions >= 4.7.1",

0 commit comments

Comments
 (0)