From 3d0b5fd592c7d41c53872abd8ed2e8c96c98ecea Mon Sep 17 00:00:00 2001 From: Ianna Osborne Date: Mon, 19 Aug 2024 12:19:04 +0200 Subject: [PATCH] fix: fix to numpy 2.0 stable version --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3906837..da966b7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -43,12 +43,12 @@ jobs: fail-fast: false matrix: python-version: ["3.9", "3.12"] - numpy-version: ["latest"] + numpy-version: ["2.0"] runs-on: [ubuntu-latest, macos-latest, windows-latest] include: - python-version: "pypy-3.10" - numpy-version: "latest" + numpy-version: "2.0" runs-on: ubuntu-latest - python-version: "3.9" numpy-version: "1.22.0" @@ -65,7 +65,7 @@ jobs: allow-prereleases: true - name: Install old NumPy - if: matrix.numpy-version != 'latest' + if: matrix.numpy-version != '2.0' run: python -m pip install numpy==${{ matrix.numpy-version }} - name: Install package