diff --git a/lib/galaxy/dependencies/dev-requirements.txt b/lib/galaxy/dependencies/dev-requirements.txt index b2767bc36878..6393839ea395 100644 --- a/lib/galaxy/dependencies/dev-requirements.txt +++ b/lib/galaxy/dependencies/dev-requirements.txt @@ -142,6 +142,7 @@ urllib3[socks]==1.26.14 ; python_version >= "3.7" and python_version < "3.12" vine==5.0.0 ; python_version >= "3.7" and python_version < "3.12" watchdog==2.2.1 ; python_version >= "3.7" and python_version < "3.12" wcwidth==0.2.6 ; python_version >= "3.7" and python_version < "3.12" +werkzeug==2.2.3 ; python_version >= "3.7" and python_version < "3.12" wrapt==1.14.1 ; python_version >= "3.7" and python_version < "3.12" wsproto==1.2.0 ; python_version >= "3.7" and python_version < "3.12" yarl==1.8.2 ; python_version >= "3.7" and python_version < "3.12" diff --git a/lib/galaxy/dependencies/pinned-requirements.txt b/lib/galaxy/dependencies/pinned-requirements.txt index 90333266c041..ee814dcc29ee 100644 --- a/lib/galaxy/dependencies/pinned-requirements.txt +++ b/lib/galaxy/dependencies/pinned-requirements.txt @@ -142,7 +142,7 @@ pysam==0.21.0 ; python_version >= "3.7" and python_version < "3.12" python-dateutil==2.8.2 ; python_version >= "3.7" and python_version < "3.12" python-jose==3.3.0 ; python_version >= "3.7" and python_version < "3.12" python-magic==0.4.27 ; python_version >= "3.7" and python_version < "3.12" -python-multipart==0.0.5 ; python_version >= "3.7" and python_version < "3.12" +python-multipart==0.0.7 ; python_version >= "3.7" and python_version < "3.12" python3-openid==3.2.0 ; python_version >= "3.7" and python_version < "3.12" pytz==2022.7.1 ; python_version >= "3.7" and python_version < "3.12" pyyaml==6.0 ; python_version >= "3.7" and python_version < "3.12" diff --git a/packages/util/test-requirements.txt b/packages/util/test-requirements.txt index 779ccfa23c7e..2b7d321b4f1a 100644 --- a/packages/util/test-requirements.txt +++ b/packages/util/test-requirements.txt @@ -1,3 +1,4 @@ pytest pytest-httpserver responses +Werkzeug diff --git a/pyproject.toml b/pyproject.toml index c1c825f1aa84..64673290764d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -151,6 +151,7 @@ testfixtures = "*" tuspy = "*" twill = "*" watchdog = "*" +Werkzeug = "*" [tool.ruff] select = ["E", "F", "B", "UP"]