From ad1bcc25629e08e5475c30600e68b3e38c0a5153 Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Fri, 12 Jul 2024 19:26:58 -0400 Subject: [PATCH] BUG: numpy is being upgraded The 'only-if-needed' is upgrading numpy to latest. --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index fb6ca68..66c0f55 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -36,7 +36,7 @@ jobs: if: ${{ matrix.numpy_ver != 'latest'}} run: | pip install numpy==${{ matrix.numpy_ver }} - pip install --upgrade-strategy only-if-needed .[test] + pip install .[test] - name: Install standard dependencies if: ${{ matrix.numpy_ver == 'latest'}}