Skip to content

Commit 00e9140

Browse files
committed
Remove LIMIT_NUMPY_VERSION in workflows
1 parent 2cea021 commit 00e9140

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
os: [windows-latest, ubuntu-latest, macos-latest]
2020
python-version: ["3.9", "3.10", "3.11", "3.12"]
2121
env:
22-
LIMIT_NUMPY_VERSION: 2.0.0
2322
LIMIT_SCIPY_VERSION: 1.13.1
2423
steps:
2524
- name: Get number of CPU cores
@@ -63,7 +62,7 @@ jobs:
6362

6463
- name: Install other dependencies
6564
run: |
66-
python${{ matrix.python-version }} -m pip install Cython pytest pytest-cov flake8 "numpy<${{ env.LIMIT_NUMPY_VERSION }}" "scipy<=${{ env.LIMIT_SCIPY_VERSION }}"
65+
python${{ matrix.python-version }} -m pip install Cython pytest pytest-cov flake8 numpy "scipy<=${{ env.LIMIT_SCIPY_VERSION }}"
6766
python${{ matrix.python-version }} setup.py build_ext -j${{ steps.cpu-cores.outputs.count }}
6867
python${{ matrix.python-version }} -m pip install -e .[tests]
6968

.github/workflows/python-publish.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ on:
1313
types: [published]
1414

1515
env:
16-
LIMIT_NUMPY_VERSION: 2.0.0
1716
LIMIT_SCIPY_VERSION: 1.13.1
1817

1918
jobs:
@@ -59,7 +58,7 @@ jobs:
5958
run: python${{ matrix.python-version }} -m pip install wheel setuptools pip --upgrade
6059

6160
- name: Install numpy, scipy
62-
run: pip install "numpy<${{ env.LIMIT_NUMPY_VERSION }}" "scipy<=${{ env.LIMIT_SCIPY_VERSION }}"
61+
run: pip install numpy "scipy<=${{ env.LIMIT_SCIPY_VERSION }}"
6362

6463
- name: Install other dependencies
6564
run: |

0 commit comments

Comments
 (0)