mirror of
https://github.com/jlengrand/openapi-generator.git
synced 2026-05-09 15:54:12 +00:00
[Python] Fixed docstrings in api.mustache (#6391)
* [Python] Fixed docstrings Fixes https://github.com/swagger-api/swagger-codegen/issues/9630 * Updated generated files * Fixed python-experimental * Updated generated files * Fully fixed the format of the docstrings * Updated generated files * Updated generated files in openapi3
This commit is contained in:
@@ -1,8 +1,16 @@
|
||||
connexion >= 2.6.0; python_version>="3.6"
|
||||
connexion >= 2.3.0; python_version=="3.5"
|
||||
connexion >= 2.3.0; python_version=="3.4"
|
||||
connexion == 2.4.0; python_version<="2.7"
|
||||
connexion[swagger-ui] >= 2.6.0; python_version>="3.6"
|
||||
# 2.3 is the last version that supports python 3.4-3.5
|
||||
connexion[swagger-ui] <= 2.3.0; python_version=="3.5" or python_version=="3.4"
|
||||
connexion[swagger-ui] == 2.4.0; python_version<="2.7"
|
||||
# connexion requires werkzeug but connexion < 2.4.0 does not install werkzeug
|
||||
# we must peg werkzeug versions below to fix connexion
|
||||
# https://github.com/zalando/connexion/pull/1044
|
||||
werkzeug == 0.16.1; python_version=="3.5" or python_version=="3.4"
|
||||
swagger-ui-bundle >= 0.0.2
|
||||
python_dateutil >= 2.6.0
|
||||
typing >= 3.5.2.2
|
||||
# For specs with timestamps, pyyaml 5.3 broke connexion's spec parsing in python 2.
|
||||
# Connexion uses copy.deepcopy() on the spec, thus hitting this bug:
|
||||
# https://github.com/yaml/pyyaml/issues/387
|
||||
pyyaml < 5.3; python_version<="2.7"
|
||||
setuptools >= 21.0.0
|
||||
|
||||
Reference in New Issue
Block a user