Skip to content

Commit

Permalink
Relax pip check for tensorflow-cpu
Browse files Browse the repository at this point in the history
  • Loading branch information
julesvanrie committed May 23, 2024
1 parent 8518a99 commit 6883443
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions checks/pip_check.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,11 @@ for r in ${REQUIRED[@]}; do
if [ $r = ${q} ]; then
present=1
fi
if [ $r = 'tensorflow' ]; then
if [ 'tensorflow-cpu' = $q ]; then
present=1
fi
fi
fi
done
if (($present == 0))
Expand Down

0 comments on commit 6883443

Please sign in to comment.