Skip to content

Commit b37784c

Browse files
committed
CI: pin oldest supported NumPy
1 parent 7f7455f commit b37784c

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

.github/workflows/sdist.yml

+10-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,16 @@ jobs:
5858
- name: Install pandas from sdist
5959
run: |
6060
conda list
61-
python -m pip install dist/*.gz
61+
python -m pip install dist/*.gz -v
62+
63+
- name: Force oldest supported NumPy
64+
run: |
65+
case "${{matrix.python-version}}" in
66+
3.8)
67+
pip install numpy==1.17.3 ;;
68+
3.9)
69+
pip install numpy==1.19.3 ;;
70+
esac
6271
6372
- name: Import pandas
6473
run: |

0 commit comments

Comments
 (0)