Skip to content

Commit

Permalink
Use higher global python version in manylinux build
Browse files Browse the repository at this point in the history
  • Loading branch information
coldfix committed Dec 27, 2024
1 parent d154cf8 commit acce90b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/build/linux/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ FROM quay.io/pypa/$BASE

ARG UID=1000
ARG GID=$UID
ENV PATH="/opt/python/cp36-cp36m/bin:${PATH}"
# Highest version supported by manylinux1:
ENV PATH="/opt/python/cp39-cp39/bin:${PATH}"

RUN groupadd -o -g $GID runner && \
useradd -o -u $UID -g $GID runner && \
Expand Down

0 comments on commit acce90b

Please sign in to comment.