This is an automated email from the ASF dual-hosted git repository.
bneradt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/trafficserver.git
The following commit(s) were added to refs/heads/master by this push:
new 46c1a0adf Pin flask to version 2.1.3 (#9008)
46c1a0adf is described below
commit 46c1a0adf450ac6c27d3eb62ebc55bba0a626b81
Author: Brian Neradt <[email protected]>
AuthorDate: Tue Aug 9 10:06:53 2022 -0500
Pin flask to version 2.1.3 (#9008)
This resolves an AuTest Pipenv package dependency conflict for Werkzeug,
which is used by httpbin. Latest versions of flask require newer
versions of flask which conflicts with our pin to keep httpbin working.
---
tests/Pipfile | 1 +
1 file changed, 1 insertion(+)
diff --git a/tests/Pipfile b/tests/Pipfile
index ac989909e..893d55c17 100644
--- a/tests/Pipfile
+++ b/tests/Pipfile
@@ -48,6 +48,7 @@ python-jose = "*"
# depends upon. Pinning Wekrzeug for now until httpbin or its dependencies is
# updated for the changed API.
Werkzeug = "==2.0.3"
+flask = "==2.1.3"
[requires]
python_version = "3"