From 63883a8e9ef6afb246a1d4440375dff72e9685de Mon Sep 17 00:00:00 2001 From: Robert Bartel Date: Tue, 15 Oct 2024 12:27:47 -0400 Subject: [PATCH] Update Actions to install 1.x numpy. Updating Actions depending on numpy install to use pre-2.0 numpy version as is currently required for ngen builds. --- .github/actions/ngen-build/action.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/ngen-build/action.yaml b/.github/actions/ngen-build/action.yaml index cfd01eacaa..3c1fa8ccc3 100644 --- a/.github/actions/ngen-build/action.yaml +++ b/.github/actions/ngen-build/action.yaml @@ -144,7 +144,7 @@ runs: python3 -m venv .venv . .venv/bin/activate pip install pip - pip install numpy + pip install numpy<=2.0.0 deactivate shell: bash