Skip to content

Commit fc1f0df

Browse files
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 <[email protected]>
1 parent 15fe2ed commit fc1f0df

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

pyproject.toml

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -45,24 +45,24 @@ connexion = 'connexion.cli:main'
4545

4646
[tool.poetry.dependencies]
4747
python = '^3.7'
48-
asgiref = "^3.4"
49-
clickclick = ">= 1.2, < 21"
50-
httpx = "^0.23"
51-
importlib_metadata = { version = "^6.0.0", python = "<3.8" }
52-
inflection = ">= 0.3.1, < 0.6"
53-
jsonschema = "^4.0.1"
54-
Jinja2 = "^3.0.0"
55-
python-multipart = "~0.0.5"
56-
PyYAML = ">= 5.1, < 7"
57-
requests = "^2.27"
58-
starlette = "^0.25"
59-
typing-extensions = "^4"
60-
werkzeug = "^2.2.1"
48+
asgiref = ">= 3.4"
49+
clickclick = ">= 1.2"
50+
httpx = ">= 0.23"
51+
importlib_metadata = { version = ">=6.0.0", python = "<3.8" }
52+
inflection = ">= 0.3.1"
53+
jsonschema = ">= 4.0.1"
54+
Jinja2 = ">= 3.0.0"
55+
python-multipart = ">= 0.0.5"
56+
PyYAML = ">= 5.1"
57+
requests = ">= 2.27"
58+
starlette = ">= 0.25"
59+
typing-extensions = ">= 4"
60+
werkzeug = ">= 2.2.1"
6161

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

6767
[tool.poetry.extras]
6868
flask = ["a2wsgi", "flask"]

0 commit comments

Comments
 (0)