Skip to content
This repository was archived by the owner on Dec 25, 2024. It is now read-only.

Commit 688c7aa

Browse files
committed
Samples updated
1 parent 8a11dbe commit 688c7aa

File tree

7 files changed

+29
-29
lines changed

7 files changed

+29
-29
lines changed
Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{{#if asyncio}}
2-
{{#if quoted}}"{{/if}}aiohttp ~= 3.0.0{{#if quoted}}",{{/if}}
2+
{{#if quoted}}"{{/if}}aiohttp >= 3.0.0{{#if quoted}}",{{/if}}
33
{{/if}}
4-
{{#if quoted}}"{{/if}}certifi ~= 14.5.14{{#if quoted}}",{{/if}}
4+
{{#if quoted}}"{{/if}}certifi >= 14.5.14{{#if quoted}}",{{/if}}
55
{{#if quoted}}"{{/if}}frozendict ~= 2.3.4{{#if quoted}}",{{/if}}
66
{{#if hasHttpSignatureMethods}}
7-
{{#if quoted}}"{{/if}}pem ~= 19.3.0{{#if quoted}}",{{/if}}
8-
{{#if quoted}}"{{/if}}pycryptodome ~= 3.9.0{{#if quoted}}",{{/if}}
7+
{{#if quoted}}"{{/if}}pem >= 19.3.0{{#if quoted}}",{{/if}}
8+
{{#if quoted}}"{{/if}}pycryptodome >= 3.9.0{{#if quoted}}",{{/if}}
99
{{/if}}
1010
{{#if quoted}}"{{/if}}python-dateutil ~= 2.7.0{{#if quoted}}",{{/if}}
11-
{{#if quoted}}"{{/if}}setuptools ~= 21.0.0{{#if quoted}}",{{/if}}
11+
{{#if quoted}}"{{/if}}setuptools >= 21.0.0{{#if quoted}}",{{/if}}
1212
{{#if tornado}}
13-
{{#if quoted}}"{{/if}}tornado ~= 4.2{{#if quoted}}",{{/if}}
13+
{{#if quoted}}"{{/if}}tornado >= 4.2{{#if quoted}}",{{/if}}
1414
{{/if}}
1515
{{#if quoted}}"{{/if}}typing_extensions ~= 4.3.0{{#if quoted}}",{{/if}}
16-
{{#if quoted}}"{{/if}}urllib3 ~= 1.26.12{{#if quoted}}",{{/if}}
16+
{{#if quoted}}"{{/if}}urllib3 ~= 1.26.7{{#if quoted}}",{{/if}}
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
certifi ~= 14.5.14
1+
certifi >= 14.5.14
22
frozendict ~= 2.3.4
33
python-dateutil ~= 2.7.0
4-
setuptools ~= 21.0.0
4+
setuptools >= 21.0.0
55
typing_extensions ~= 4.3.0
6-
urllib3 ~= 1.26.12
6+
urllib3 ~= 1.26.7

samples/openapi3/client/3_0_3_unit_test/python/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
# http://pypi.python.org/pypi/setuptools
2222

2323
REQUIRES = [
24-
"certifi ~= 14.5.14",
24+
"certifi >= 14.5.14",
2525
"frozendict ~= 2.3.4",
2626
"python-dateutil ~= 2.7.0",
27-
"setuptools ~= 21.0.0",
27+
"setuptools >= 21.0.0",
2828
"typing_extensions ~= 4.3.0",
29-
"urllib3 ~= 1.26.12",
29+
"urllib3 ~= 1.26.7",
3030
]
3131

3232
setup(
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
certifi ~= 14.5.14
1+
certifi >= 14.5.14
22
frozendict ~= 2.3.4
33
python-dateutil ~= 2.7.0
4-
setuptools ~= 21.0.0
4+
setuptools >= 21.0.0
55
typing_extensions ~= 4.3.0
6-
urllib3 ~= 1.26.12
6+
urllib3 ~= 1.26.7

samples/openapi3/client/features/nonCompliantUseDiscriminatorIfCompositionFails/python/setup.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
# http://pypi.python.org/pypi/setuptools
2222

2323
REQUIRES = [
24-
"certifi ~= 14.5.14",
24+
"certifi >= 14.5.14",
2525
"frozendict ~= 2.3.4",
2626
"python-dateutil ~= 2.7.0",
27-
"setuptools ~= 21.0.0",
27+
"setuptools >= 21.0.0",
2828
"typing_extensions ~= 4.3.0",
29-
"urllib3 ~= 1.26.12",
29+
"urllib3 ~= 1.26.7",
3030
]
3131

3232
setup(
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
certifi ~= 14.5.14
1+
certifi >= 14.5.14
22
frozendict ~= 2.3.4
3-
pem ~= 19.3.0
4-
pycryptodome ~= 3.9.0
3+
pem >= 19.3.0
4+
pycryptodome >= 3.9.0
55
python-dateutil ~= 2.7.0
6-
setuptools ~= 21.0.0
6+
setuptools >= 21.0.0
77
typing_extensions ~= 4.3.0
8-
urllib3 ~= 1.26.12
8+
urllib3 ~= 1.26.7

samples/openapi3/client/petstore/python/setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,14 +21,14 @@
2121
# http://pypi.python.org/pypi/setuptools
2222

2323
REQUIRES = [
24-
"certifi ~= 14.5.14",
24+
"certifi >= 14.5.14",
2525
"frozendict ~= 2.3.4",
26-
"pem ~= 19.3.0",
27-
"pycryptodome ~= 3.9.0",
26+
"pem >= 19.3.0",
27+
"pycryptodome >= 3.9.0",
2828
"python-dateutil ~= 2.7.0",
29-
"setuptools ~= 21.0.0",
29+
"setuptools >= 21.0.0",
3030
"typing_extensions ~= 4.3.0",
31-
"urllib3 ~= 1.26.12",
31+
"urllib3 ~= 1.26.7",
3232
]
3333

3434
setup(

0 commit comments

Comments
 (0)