Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Revert "Use manylinux: auto for aarch64 builds (#3444)" #3576

Merged
merged 1 commit into from
May 14, 2024

Conversation

zanieb
Copy link
Member

@zanieb zanieb commented May 14, 2024

This reverts #3444 which appears to be the cause of SSL failures when building aarch64 Linux images on macOS hosts (see #3570)

Closes #3570

@zanieb zanieb merged commit 759d40c into main May 14, 2024
61 checks passed
@zanieb zanieb deleted the zb/fix-ssl-macos branch May 14, 2024 13:51
@zanieb
Copy link
Member Author

zanieb commented May 14, 2024

I tested this by downloading the aarch64 wheel from this workflow and the the last release workflow.

Succeeds:

ARG PYTHON_VERSION=3.11
FROM python:${PYTHON_VERSION}-slim as base

RUN apt-get update
RUN apt-get install -y curl build-essential cmake

ADD ./uv-0.1.43-py3-none-manylinux_2_28_aarch64.whl ./uv-0.1.43-py3-none-manylinux_2_28_aarch64.whl
RUN pip install ./uv-0.1.43-py3-none-manylinux_2_28_aarch64.whl

ADD ./scripts/requirements/compiled/black.txt /requirements.txt

ENV RUST_LOG=trace
RUN uv pip install -r /requirements.txt --system -v

Fails:

ARG PYTHON_VERSION=3.11
FROM python:${PYTHON_VERSION}-slim as base

RUN apt-get update
RUN apt-get install -y curl build-essential cmake

ADD ./uv-0.1.43-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl ./uv-0.1.43-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
RUN pip install ./uv-0.1.43-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

ADD ./scripts/requirements/compiled/black.txt /requirements.txt

ENV RUST_LOG=trace
RUN uv pip install -r /requirements.txt --system -v

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

uv pip install fails from inside docker.
1 participant