Skip to content

Commit ab5d732

Browse files
committed
Remove LIMIT_SCIPY_VERSION in workflows
1 parent 00e9140 commit ab5d732

File tree

2 files changed

+2
-7
lines changed

2 files changed

+2
-7
lines changed

.github/workflows/python-package.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,6 @@ jobs:
1818
matrix:
1919
os: [windows-latest, ubuntu-latest, macos-latest]
2020
python-version: ["3.9", "3.10", "3.11", "3.12"]
21-
env:
22-
LIMIT_SCIPY_VERSION: 1.13.1
2321
steps:
2422
- name: Get number of CPU cores
2523
uses: SimenB/github-actions-cpu-cores@v2
@@ -62,7 +60,7 @@ jobs:
6260

6361
- name: Install other dependencies
6462
run: |
65-
python${{ matrix.python-version }} -m pip install Cython pytest pytest-cov flake8 numpy "scipy<=${{ env.LIMIT_SCIPY_VERSION }}"
63+
python${{ matrix.python-version }} -m pip install Cython pytest pytest-cov flake8 numpy scipy
6664
python${{ matrix.python-version }} setup.py build_ext -j${{ steps.cpu-cores.outputs.count }}
6765
python${{ matrix.python-version }} -m pip install -e .[tests]
6866

.github/workflows/python-publish.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ on:
1212
release:
1313
types: [published]
1414

15-
env:
16-
LIMIT_SCIPY_VERSION: 1.13.1
17-
1815
jobs:
1916
build-wheels:
2017
name: Building on ${{ matrix.os }}
@@ -58,7 +55,7 @@ jobs:
5855
run: python${{ matrix.python-version }} -m pip install wheel setuptools pip --upgrade
5956

6057
- name: Install numpy, scipy
61-
run: pip install numpy "scipy<=${{ env.LIMIT_SCIPY_VERSION }}"
58+
run: pip install numpy scipy
6259

6360
- name: Install other dependencies
6461
run: |

0 commit comments

Comments
 (0)