From dc603f8e30842ce7e3fb612cdee597cf182b7021 Mon Sep 17 00:00:00 2001 From: Brian Neradt Date: Mon, 8 Aug 2022 22:20:35 +0000 Subject: [PATCH] Pin flask to version 2.1.3 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 ac989909ec4..893d55c17fa 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"