From de8f8a929523cd09e74d637bf754dfcc5b4afc82 Mon Sep 17 00:00:00 2001 From: Angeline Burrell Date: Fri, 12 Jul 2024 19:29:35 -0400 Subject: [PATCH] BUG: change numpy install order Try changing the numpy install order. --- .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 66c0f55..82f2a0a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -35,8 +35,8 @@ jobs: - name: Install NEP29 dependencies if: ${{ matrix.numpy_ver != 'latest'}} run: | - pip install numpy==${{ matrix.numpy_ver }} pip install .[test] + pip install numpy==${{ matrix.numpy_ver }} - name: Install standard dependencies if: ${{ matrix.numpy_ver == 'latest'}}