From 175d91a96add3c765b6ac300c663e4cd41646cb7 Mon Sep 17 00:00:00 2001 From: Daichi Kato <83964523+porink0424@users.noreply.github.com> Date: Wed, 1 May 2024 19:08:01 +0900 Subject: [PATCH] Check numpy v2.0 (#177) * Add numpy-version matrix into github workflows * Modify numpy-version matrix * Modify numpy-version matrix * Modify numpy-version matrix * Add test-numpy2 as a new test --- .github/workflows/tests.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 02bc7c7..084710a 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -41,3 +41,17 @@ jobs: python -m pip install --upgrade pip setuptools numpy scipy hypothesis pip install --progress-bar off . - run: python -m unittest + test-numpy2: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + - name: Setup Python + uses: actions/setup-python@v4 + with: + architecture: x64 + - name: Install dependencies + run: | + python -m pip install --upgrade pip setuptools scipy hypothesis + python -m pip install --pre --upgrade numpy + pip install --progress-bar off . + - run: python -m unittest \ No newline at end of file