Skip to content

Commit f669ce9

Browse files
authored
Merge pull request #971 from python-openapi/fix/limit-incompatible-werkzeug-version
Limit incompatible werkzeug version
2 parents f12e7f7 + c219c0b commit f669ce9

File tree

2 files changed

+4
-23
lines changed

2 files changed

+4
-23
lines changed

Diff for: poetry.lock

+1-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: pyproject.toml

+3-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,9 @@ parse = "*"
7272
openapi-schema-validator = "^0.6.0"
7373
openapi-spec-validator = "^0.7.1"
7474
requests = {version = "*", optional = true}
75-
werkzeug = "*"
75+
# werkzeug 3.1.2 changed the definition of Headers
76+
# See https://github.com/python-openapi/openapi-core/issues/938
77+
werkzeug = "<3.1.2"
7678
jsonschema-path = "^0.3.1"
7779
jsonschema = "^4.18.0"
7880
multidict = {version = "^6.0.4", optional = true}

0 commit comments

Comments
 (0)