You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by zw...@apache.org on 2022/08/10 16:57:24 UTC

[trafficserver] branch 9.2.x updated: Pin flask to version 2.1.3 (#9008)

This is an automated email from the ASF dual-hosted git repository.

zwoop pushed a commit to branch 9.2.x
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/9.2.x by this push:
     new 55c83f456 Pin flask to version 2.1.3 (#9008)
55c83f456 is described below

commit 55c83f4569c594b89a364f3280467968c5e047f3
Author: Brian Neradt <br...@gmail.com>
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.
    
    (cherry picked from commit 46c1a0adf450ac6c27d3eb62ebc55bba0a626b81)
---
 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"