Skip to content

Commit a07505a

Browse files
authored
Use latest numpy 2+ for validaiton of wheels (#6083)
I believe we are testing with numpy 1+ ad 2.0.0. This removes 2.0.0 pin and uses latest numpy
1 parent f6c5d6d commit a07505a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/scripts/validate_binaries.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -100,9 +100,9 @@ else
100100

101101
# Regular smoke test
102102
${PYTHON_RUN} ./smoke_test/smoke_test.py ${TEST_SUFFIX}
103-
# For pip install also test with numpy 2.0.0 for python 3.8 or above
103+
# For pip install also test with latest numpy
104104
if [[ ${MATRIX_PACKAGE_TYPE} == 'wheel' ]]; then
105-
pip3 install numpy==2.0.0 --force-reinstall
105+
pip3 install numpy --force-reinstall
106106
${PYTHON_RUN} ./smoke_test/smoke_test.py ${TEST_SUFFIX}
107107
fi
108108

0 commit comments

Comments
 (0)