mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-06-28 19:50:49 +00:00
* Fix referenced path for tests * Explicit dependencies Flask 2.3 has breaking changes * Marks all async tests with pytest.mark.asyncio Otherwise they are skipped by pytest and coverage is zero * Fix path for pytest On suggestion from https://github.com/OpenAPITools/openapi-generator/pull/17060#discussion_r1392666369
10 lines
515 B
Plaintext
10 lines
515 B
Plaintext
connexion[aiohttp,swagger-ui] >= 2.6.0, <3; python_version>="3.6"
|
|
# 2.3 is the last version that supports python 3.5
|
|
connexion[aiohttp,swagger-ui] <= 2.3.0; python_version=="3.5" or python_version=="3.4"
|
|
# 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.9
|
|
aiohttp_jinja2 == 1.5.0
|
|
Flask < 2.3 |