Skip to content

Commit

Permalink
Update client wheel build to handle win10 python installation (#1497)
Browse files Browse the repository at this point in the history
  • Loading branch information
dzier authored and David Goodwin committed May 27, 2020
1 parent 8827516 commit 9699da8
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/clients/python/api_v1/library/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,11 @@ function main() {

pushd "${WHLDIR}"
echo $(date) : "=== Building wheel"
VERSION=$VERSION python3 setup.py bdist_wheel
if [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then
VERSION=$VERSION python3 setup.py bdist_wheel
else
VERSION=$VERSION python setup.py bdist_wheel
fi
mkdir -p "${DEST}"
cp dist/* "${DEST}"
popd
Expand Down

0 comments on commit 9699da8

Please sign in to comment.