Skip to content

Commit 6bb6b08

Browse files
committed
Fix publish action
1 parent 254052f commit 6bb6b08

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ jobs:
100100
- name: Display Python version
101101
run: python -c "import sys; print(sys.version)"
102102

103-
- name: Install numpy
103+
- name: Install numpy, scipy
104104
run: |
105-
python -m pip install "numpy<${{ env.LIMIT_NUMPY_VERSION }}" "scipy<=${{ env.LIMIT_SCIPY_VERSION }}"
105+
python -m pip install "numpy<${{ env.LIMIT_NUMPY_VERSION }}" scipy
106106
python -c "import numpy; print(numpy.__version__)"
107107
108108
- name: Install other dependencies

0 commit comments

Comments
 (0)