Skip to content

Commit

Permalink
hotfix: zstd not installed on aarch64 manylinux
Browse files Browse the repository at this point in the history
  • Loading branch information
kyujin-cho committed Feb 3, 2024
1 parent b4d790d commit ad82963
Showing 1 changed file with 7 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,13 @@ ENV PATH=${PREFIX}/bin:$PATH \
PYTHON_VERSION=3.11.1 \
LANG=C.UTF-8

RUN <<-EOF
# zstd not available on aarch CentOS repo
if [ "${ARCH}" = "aarch64" ]; then
yum install -y epel-release
fi
EOF

RUN yum install -y \
wget \
tar \
Expand Down

0 comments on commit ad82963

Please sign in to comment.