Skip to content

Commit

Permalink
Limit numpy version for armv7l platforms
Browse files Browse the repository at this point in the history
  • Loading branch information
bjoernrennfanz committed Nov 6, 2023
1 parent 370ee43 commit f1075b5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion scripts/build/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,13 @@ export PYLON_ROOT
$PYTHON setup.py clean

if [ -z "$DISABLE_TESTS" ]; then
$PYTHON -m pip install --user numpy
# Limit numpy version due to issues with build system on armv7l
if [[ "$UPDATE_PLATFORM_TAG" == *"armv7l"* ]]; then
$PYTHON -m pip install --user "numpy<=1.25.2"
else
$PYTHON -m pip install --user numpy
fi

#For now failed tests are accepted until all are fixed
$PYTHON setup.py test
fi
Expand Down

0 comments on commit f1075b5

Please sign in to comment.