Skip to content

Commit

Permalink
fix: fix to numpy 2.0 stable version
Browse files Browse the repository at this point in the history
  • Loading branch information
ianna committed Aug 19, 2024
1 parent ed7e557 commit 3d0b5fd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand All @@ -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
Expand Down

0 comments on commit 3d0b5fd

Please sign in to comment.