From 1de903409d4568ea792adb8e7eecc7c67cfdd43d Mon Sep 17 00:00:00 2001 From: Sefik Ilkin Serengil Date: Sun, 10 Nov 2024 18:44:25 +0000 Subject: [PATCH] adding comment why to enforce flask 2 --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 92b03bc..10e6339 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -37,8 +37,8 @@ jobs: run: | python -m pip install --upgrade pip pip install pytest - pip install Werkzeug==2.0.2 - pip install flask==2.0.2 + # sending files in form data throwing error in flask 3 while running tests + pip install Werkzeug==2.0.2 flask==2.0.2 pip install . - name: Test with pytest