From cad99b966a092dedfad8e6c8e4516aa758b3b3af Mon Sep 17 00:00:00 2001 From: Vicente Eduardo Ferrer Garcia <7854099+viferga@users.noreply.github.com> Date: Wed, 11 Dec 2024 19:10:23 -0500 Subject: [PATCH] Update test-windows.yml --- .github/workflows/test-windows.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-windows.yml b/.github/workflows/test-windows.yml index 63e8ed7..d9e95ce 100644 --- a/.github/workflows/test-windows.yml +++ b/.github/workflows/test-windows.yml @@ -226,12 +226,16 @@ jobs: metacall pip install -r test/opencv/requirements.txt | findstr "Successfully installed" # For some reason, OpenCV fails if you do not reinstall numpy - - name: Python OpenCV Test (Reinstall Numpy for OpenCV) + - name: Python OpenCV Test (Uninstall Numpy for OpenCV) shell: cmd run: | metacall pip uninstall numpy --yes + + - name: Python OpenCV Test (Install Numpy for OpenCV) + shell: cmd + run: | metacall pip install numpy==1.21.6 - + - name: Python OpenCV Test (Test OpenCV) shell: cmd run: |