From a2293ffe620afea3cadd0dac19132cf12410fab7 Mon Sep 17 00:00:00 2001 From: "A.J. Stein" Date: Mon, 27 Nov 2023 13:51:21 -0500 Subject: [PATCH] Fix Anaconda environment configuration for tests (#40) In order to fix scitt-community/scitt-api-emulator#38, we need to hard pin the version of Werkzeug used by Flask to avoid the changes after to how functions are organized in the library's modules. See PR Sanster/lama-cleaner#390 with a related solution (not specific to Anaconda approach, but informative). See [StackOverflow](https://stackoverflow.com/a/77217971) post for details. --- environment.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/environment.yml b/environment.yml index 90e61fa8..b62f9e81 100644 --- a/environment.yml +++ b/environment.yml @@ -38,3 +38,4 @@ dependencies: - jsonschema==4.17.3 - jwcrypto==1.5.0 - PyJWT==2.8.0 + - werkzeug==2.2.2