Skip to content

Commit

Permalink
[Flask] Upgrade to flask-connexion 2.0.0 (#1382)
Browse files Browse the repository at this point in the history
Fix #323
  • Loading branch information
cbornet authored and wing328 committed Nov 6, 2018
1 parent 30bfebf commit 2184a8a
Show file tree
Hide file tree
Showing 8 changed files with 22 additions and 8 deletions.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
connexion == 2.0.0rc3
connexion == 2.0.0
swagger-ui-bundle == 0.0.2
python_dateutil == 2.6.0
{{#supportPython2}}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@ VERSION = "{{packageVersion}}"
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

REQUIRES = ["connexion"]
REQUIRES = [
"connexion==2.0.0",
"swagger-ui-bundle==0.0.2",
"python_dateutil==2.6.0"{{#supportPython2}},
"typing==3.5.2.2"{{/supportPython2}}
]

setup(
name=NAME,
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.1-SNAPSHOT
3.3.2-SNAPSHOT
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
connexion == 2.0.0rc3
connexion == 2.0.0
swagger-ui-bundle == 0.0.2
python_dateutil == 2.6.0
typing == 3.5.2.2
Expand Down
7 changes: 6 additions & 1 deletion samples/server/petstore/flaskConnexion-python2/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,12 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

REQUIRES = ["connexion"]
REQUIRES = [
"connexion==2.0.0",
"swagger-ui-bundle==0.0.2",
"python_dateutil==2.6.0",
"typing==3.5.2.2"
]

setup(
name=NAME,
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.3.1-SNAPSHOT
3.3.2-SNAPSHOT
2 changes: 1 addition & 1 deletion samples/server/petstore/flaskConnexion/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
connexion == 2.0.0rc3
connexion == 2.0.0
swagger-ui-bundle == 0.0.2
python_dateutil == 2.6.0
setuptools >= 21.0.0
6 changes: 5 additions & 1 deletion samples/server/petstore/flaskConnexion/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,11 @@
# prerequisite: setuptools
# http://pypi.python.org/pypi/setuptools

REQUIRES = ["connexion"]
REQUIRES = [
"connexion==2.0.0",
"swagger-ui-bundle==0.0.2",
"python_dateutil==2.6.0"
]

setup(
name=NAME,
Expand Down

0 comments on commit 2184a8a

Please sign in to comment.