Skip to content

Commit

Permalink
Move from caret to inequality requirements (#1704)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
marcin-lulek-cint and RobbeSneyders committed May 9, 2023
1 parent 15fe2ed commit fc1f0df
Showing 1 changed file with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -45,24 +45,24 @@ connexion = 'connexion.cli:main'

[tool.poetry.dependencies]
python = '^3.7'
asgiref = "^3.4"
clickclick = ">= 1.2, < 21"
httpx = "^0.23"
importlib_metadata = { version = "^6.0.0", python = "<3.8" }
inflection = ">= 0.3.1, < 0.6"
jsonschema = "^4.0.1"
Jinja2 = "^3.0.0"
python-multipart = "~0.0.5"
PyYAML = ">= 5.1, < 7"
requests = "^2.27"
starlette = "^0.25"
typing-extensions = "^4"
werkzeug = "^2.2.1"
asgiref = ">= 3.4"
clickclick = ">= 1.2"
httpx = ">= 0.23"
importlib_metadata = { version = ">=6.0.0", python = "<3.8" }
inflection = ">= 0.3.1"
jsonschema = ">= 4.0.1"
Jinja2 = ">= 3.0.0"
python-multipart = ">= 0.0.5"
PyYAML = ">= 5.1"
requests = ">= 2.27"
starlette = ">= 0.25"
typing-extensions = ">= 4"
werkzeug = ">= 2.2.1"

a2wsgi = { version = "^1.7", optional = true }
flask = { version = "^2.2", extras = ["async"], optional = true }
py-swagger-ui = { version = "^1.1.0", optional = true }
uvicorn = { version = "^0.17.6", extras = ["standard"], optional = true }
a2wsgi = { version = ">= 1.7", optional = true }
flask = { version = ">= 2.2", extras = ["async"], optional = true }
py-swagger-ui = { version = ">= 1.1.0", optional = true }
uvicorn = { version = ">= 0.17.6", extras = ["standard"], optional = true }

[tool.poetry.extras]
flask = ["a2wsgi", "flask"]
Expand Down

0 comments on commit fc1f0df

Please sign in to comment.