From f9d35e2dd35bd33988b83f08c0df322f92809508 Mon Sep 17 00:00:00 2001 From: Simon Bowly Date: Mon, 17 Jun 2024 21:05:10 +1000 Subject: [PATCH] CI fix: fetch multiple numpy wheels --- .github/workflows/wheel-tests.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/wheel-tests.yml b/.github/workflows/wheel-tests.yml index da054a35..6c2536df 100644 --- a/.github/workflows/wheel-tests.yml +++ b/.github/workflows/wheel-tests.yml @@ -37,7 +37,8 @@ jobs: python -m build - name: Fetch dependencies for offline install run: | - pip wheel --wheel-dir=dist gurobipy pandas numpy scipy gurobipy-pandas + pip wheel --wheel-dir=dist gurobipy pandas "numpy<2" scipy gurobipy-pandas + pip wheel --wheel-dir=dist "numpy>=2" - name: Install from built wheel run: | python -m pip install --find-links dist --no-index --only-binary=:all: gurobi-optimods