mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-09 23:26:09 +00:00
Use range for dependencies in python-flask (#3470)
This commit is contained in:
committed by
William Cheng
parent
b9e863a9ca
commit
049f69c55b
@@ -1,7 +1,7 @@
|
|||||||
connexion == 2.0.2
|
connexion >= 2.0.2
|
||||||
swagger-ui-bundle == 0.0.2
|
swagger-ui-bundle >= 0.0.2
|
||||||
python_dateutil == 2.6.0
|
python_dateutil >= 2.6.0
|
||||||
{{#supportPython2}}
|
{{#supportPython2}}
|
||||||
typing == 3.5.2.2
|
typing >= 3.5.2.2
|
||||||
{{/supportPython2}}
|
{{/supportPython2}}
|
||||||
setuptools >= 21.0.0
|
setuptools >= 21.0.0
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
4.0.0
|
4.1.0-SNAPSHOT
|
||||||
@@ -46,7 +46,16 @@ class TestUserController(BaseTestCase):
|
|||||||
|
|
||||||
Creates list of users with given input array
|
Creates list of users with given input array
|
||||||
"""
|
"""
|
||||||
user = []
|
user = {
|
||||||
|
"firstName" : "firstName",
|
||||||
|
"lastName" : "lastName",
|
||||||
|
"password" : "password",
|
||||||
|
"userStatus" : 6,
|
||||||
|
"phone" : "phone",
|
||||||
|
"id" : 0,
|
||||||
|
"email" : "email",
|
||||||
|
"username" : "username"
|
||||||
|
}
|
||||||
headers = {
|
headers = {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
'auth_cookie': 'special-key',
|
'auth_cookie': 'special-key',
|
||||||
@@ -65,7 +74,16 @@ class TestUserController(BaseTestCase):
|
|||||||
|
|
||||||
Creates list of users with given input array
|
Creates list of users with given input array
|
||||||
"""
|
"""
|
||||||
user = []
|
user = {
|
||||||
|
"firstName" : "firstName",
|
||||||
|
"lastName" : "lastName",
|
||||||
|
"password" : "password",
|
||||||
|
"userStatus" : 6,
|
||||||
|
"phone" : "phone",
|
||||||
|
"id" : 0,
|
||||||
|
"email" : "email",
|
||||||
|
"username" : "username"
|
||||||
|
}
|
||||||
headers = {
|
headers = {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
'auth_cookie': 'special-key',
|
'auth_cookie': 'special-key',
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
connexion == 2.0.2
|
connexion >= 2.0.2
|
||||||
swagger-ui-bundle == 0.0.2
|
swagger-ui-bundle >= 0.0.2
|
||||||
python_dateutil == 2.6.0
|
python_dateutil >= 2.6.0
|
||||||
typing == 3.5.2.2
|
typing >= 3.5.2.2
|
||||||
setuptools >= 21.0.0
|
setuptools >= 21.0.0
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
4.0.0
|
4.1.0-SNAPSHOT
|
||||||
@@ -46,7 +46,16 @@ class TestUserController(BaseTestCase):
|
|||||||
|
|
||||||
Creates list of users with given input array
|
Creates list of users with given input array
|
||||||
"""
|
"""
|
||||||
user = []
|
user = {
|
||||||
|
"firstName" : "firstName",
|
||||||
|
"lastName" : "lastName",
|
||||||
|
"password" : "password",
|
||||||
|
"userStatus" : 6,
|
||||||
|
"phone" : "phone",
|
||||||
|
"id" : 0,
|
||||||
|
"email" : "email",
|
||||||
|
"username" : "username"
|
||||||
|
}
|
||||||
headers = {
|
headers = {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
'auth_cookie': 'special-key',
|
'auth_cookie': 'special-key',
|
||||||
@@ -65,7 +74,16 @@ class TestUserController(BaseTestCase):
|
|||||||
|
|
||||||
Creates list of users with given input array
|
Creates list of users with given input array
|
||||||
"""
|
"""
|
||||||
user = []
|
user = {
|
||||||
|
"firstName" : "firstName",
|
||||||
|
"lastName" : "lastName",
|
||||||
|
"password" : "password",
|
||||||
|
"userStatus" : 6,
|
||||||
|
"phone" : "phone",
|
||||||
|
"id" : 0,
|
||||||
|
"email" : "email",
|
||||||
|
"username" : "username"
|
||||||
|
}
|
||||||
headers = {
|
headers = {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
'auth_cookie': 'special-key',
|
'auth_cookie': 'special-key',
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
connexion == 2.0.2
|
connexion >= 2.0.2
|
||||||
swagger-ui-bundle == 0.0.2
|
swagger-ui-bundle >= 0.0.2
|
||||||
python_dateutil == 2.6.0
|
python_dateutil >= 2.6.0
|
||||||
setuptools >= 21.0.0
|
setuptools >= 21.0.0
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
4.0.0
|
4.1.0-SNAPSHOT
|
||||||
@@ -38,7 +38,7 @@ class TestUserController(BaseTestCase):
|
|||||||
|
|
||||||
Creates list of users with given input array
|
Creates list of users with given input array
|
||||||
"""
|
"""
|
||||||
body = []
|
body = [{}]
|
||||||
headers = {
|
headers = {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
}
|
}
|
||||||
@@ -57,7 +57,7 @@ class TestUserController(BaseTestCase):
|
|||||||
|
|
||||||
Creates list of users with given input array
|
Creates list of users with given input array
|
||||||
"""
|
"""
|
||||||
body = []
|
body = [{}]
|
||||||
headers = {
|
headers = {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
connexion == 2.0.2
|
connexion >= 2.0.2
|
||||||
swagger-ui-bundle == 0.0.2
|
swagger-ui-bundle >= 0.0.2
|
||||||
python_dateutil == 2.6.0
|
python_dateutil >= 2.6.0
|
||||||
typing == 3.5.2.2
|
typing >= 3.5.2.2
|
||||||
setuptools >= 21.0.0
|
setuptools >= 21.0.0
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
4.0.0
|
4.1.0-SNAPSHOT
|
||||||
@@ -38,7 +38,7 @@ class TestUserController(BaseTestCase):
|
|||||||
|
|
||||||
Creates list of users with given input array
|
Creates list of users with given input array
|
||||||
"""
|
"""
|
||||||
body = []
|
body = [{}]
|
||||||
headers = {
|
headers = {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
}
|
}
|
||||||
@@ -57,7 +57,7 @@ class TestUserController(BaseTestCase):
|
|||||||
|
|
||||||
Creates list of users with given input array
|
Creates list of users with given input array
|
||||||
"""
|
"""
|
||||||
body = []
|
body = [{}]
|
||||||
headers = {
|
headers = {
|
||||||
'Content-Type': 'application/json',
|
'Content-Type': 'application/json',
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
connexion == 2.0.2
|
connexion >= 2.0.2
|
||||||
swagger-ui-bundle == 0.0.2
|
swagger-ui-bundle >= 0.0.2
|
||||||
python_dateutil == 2.6.0
|
python_dateutil >= 2.6.0
|
||||||
setuptools >= 21.0.0
|
setuptools >= 21.0.0
|
||||||
|
|||||||
Reference in New Issue
Block a user