Skip to content

Commit

Permalink
Relax Werkzeug==2.0.3 into Werkzeug<3
Browse files Browse the repository at this point in the history
  • Loading branch information
hartwork committed Dec 10, 2023
1 parent 85e280b commit f7d3d7a
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,13 +67,13 @@ def run_tests(self):
"pytest-httpbin",
"requests>=2.16.2",
"tornado",
# Needed to un-break httpbin 0.7.0. For httpbin >=0.7.1 and after,
# this pin and the dependency itself can be removed, provided
# that the related bug in httpbin has been fixed:
# https://github.com/kevin1024/vcrpy/issues/645#issuecomment-1562489489
# https://github.com/postmanlabs/httpbin/issues/673
# https://github.com/postmanlabs/httpbin/pull/674
"Werkzeug==2.0.3",
# Needed to un-break httpbin 0.10.1. For httpbin >=0.10.2,
# this cap and the dependency itself can be removed, provided
# that the related bug in httpbin has has been fixed in a new release:
# https://github.com/psf/httpbin/issues/28
# https://github.com/psf/httpbin/pull/29
# https://github.com/psf/httpbin/pull/37
"Werkzeug<3",
]

setup(
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ commands =
allowlist_externals =
./runtests.sh
deps =
Werkzeug==2.0.3
Werkzeug<3
pytest
pytest-httpbin>=1.0.1
pytest-cov
Expand Down

0 comments on commit f7d3d7a

Please sign in to comment.