mirror of
https://github.com/LukeHagar/connexion.git
synced 2025-12-07 20:37:44 +00:00
Move from caret to inequality requirements (#1704)
Fixes # . I want to use connexion with newer Starlette Changes proposed in this pull request: - Loosen requirements on starlette version --------- Co-authored-by: Robbe Sneyders <robbe.sneyders@ml6.eu>
This commit is contained in:
@@ -45,24 +45,24 @@ connexion = 'connexion.cli:main'
|
|||||||
|
|
||||||
[tool.poetry.dependencies]
|
[tool.poetry.dependencies]
|
||||||
python = '^3.7'
|
python = '^3.7'
|
||||||
asgiref = "^3.4"
|
asgiref = ">= 3.4"
|
||||||
clickclick = ">= 1.2, < 21"
|
clickclick = ">= 1.2"
|
||||||
httpx = "^0.23"
|
httpx = ">= 0.23"
|
||||||
importlib_metadata = { version = "^6.0.0", python = "<3.8" }
|
importlib_metadata = { version = ">=6.0.0", python = "<3.8" }
|
||||||
inflection = ">= 0.3.1, < 0.6"
|
inflection = ">= 0.3.1"
|
||||||
jsonschema = "^4.0.1"
|
jsonschema = ">= 4.0.1"
|
||||||
Jinja2 = "^3.0.0"
|
Jinja2 = ">= 3.0.0"
|
||||||
python-multipart = "~0.0.5"
|
python-multipart = ">= 0.0.5"
|
||||||
PyYAML = ">= 5.1, < 7"
|
PyYAML = ">= 5.1"
|
||||||
requests = "^2.27"
|
requests = ">= 2.27"
|
||||||
starlette = "^0.25"
|
starlette = ">= 0.25"
|
||||||
typing-extensions = "^4"
|
typing-extensions = ">= 4"
|
||||||
werkzeug = "^2.2.1"
|
werkzeug = ">= 2.2.1"
|
||||||
|
|
||||||
a2wsgi = { version = "^1.7", optional = true }
|
a2wsgi = { version = ">= 1.7", optional = true }
|
||||||
flask = { version = "^2.2", extras = ["async"], optional = true }
|
flask = { version = ">= 2.2", extras = ["async"], optional = true }
|
||||||
py-swagger-ui = { version = "^1.1.0", optional = true }
|
py-swagger-ui = { version = ">= 1.1.0", optional = true }
|
||||||
uvicorn = { version = "^0.17.6", extras = ["standard"], optional = true }
|
uvicorn = { version = ">= 0.17.6", extras = ["standard"], optional = true }
|
||||||
|
|
||||||
[tool.poetry.extras]
|
[tool.poetry.extras]
|
||||||
flask = ["a2wsgi", "flask"]
|
flask = ["a2wsgi", "flask"]
|
||||||
|
|||||||
Reference in New Issue
Block a user