From ea7fbfeba802c3b50d675d93b34ac69f5efc08ad Mon Sep 17 00:00:00 2001 From: "Timothy M. Shead" Date: Thu, 11 Jul 2024 21:40:09 -0600 Subject: [PATCH] Tweaking the numpy version tests. --- .github/workflows/regression-tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/regression-tests.yml b/.github/workflows/regression-tests.yml index c6ad6cbf..76a9d10d 100644 --- a/.github/workflows/regression-tests.yml +++ b/.github/workflows/regression-tests.yml @@ -13,7 +13,7 @@ jobs: fail-fast: false matrix: python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - numpy-version: ["<2.0.0", ">=2.0.0"] + numpy-version: ["numpy<2.0.0", "numpy>=2.0.0"] steps: - uses: actions/checkout@v3 @@ -26,7 +26,7 @@ jobs: sudo apt-get install ffmpeg ghostscript python -m pip install --upgrade pip pip install coveralls - pip install numpy${{ matrix.numpy-version }} + pip install ${{ matrix.numpy-version }} pip install .[all] - name: Run tests run: |