Skip to content

Commit

Permalink
[MRG+1] Fix bash syntax and update manylinux container (#422)
Browse files Browse the repository at this point in the history
* Fix bash syntax

* Update manylinux image
  • Loading branch information
aaronreidsmith authored Apr 18, 2021
1 parent ce5fc19 commit db4c92e
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build_tools/circle/build_wheel.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ function build_wheel {

# https://www.python.org/dev/peps/pep-0513/#ucs-2-vs-ucs-4-builds
ucs_tag="m"
if [ "$pyver" = "3.8" || "$pyver" = "3.9" ]; then
if [ "$pyver" = "3.8" ] || [ "$pyver" = "3.9" ]; then
ucs_tag=""
elif [ "$ucs_setting" = "ucs4" ]; then
ucs_tag="${ucs_tag}u"
Expand All @@ -23,8 +23,7 @@ function build_wheel {

DOCKER_CONTAINER_NAME=wheel_builder_$(uuidgen)

# Pin this image because wheel versions in later tags conflict
ML_IMAGE="quay.io/pypa/manylinux1_${arch}:2020-01-31-d8fa357"
ML_IMAGE="quay.io/pypa/manylinux1_${arch}:2021-04-10-43e4a61" # `latest` as of 2021-04-18
PMDARIMA_VERSION=`cat ~/pmdarima/pmdarima/VERSION`

docker pull "${ML_IMAGE}"
Expand Down

0 comments on commit db4c92e

Please sign in to comment.