You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The library can be built on musl with no issues currently. Confirmed by building it using alpine:3.17 as a base image:
FROM alpine:3.17 AS build
WORKDIR /tmp
RUN apk add \
git \
cargo \
py-pip
RUN pip3 install \
setuptools_rust \
wheel
RUN apk add git cargo py-pip; \
pip3 install setuptools_rust wheel; \
git clone --depth 1 --branch v1.0.0 https://github.com/Instagram/LibCST /tmp; \
cd LibCST; python setup.py bdist_wheel
FROM scratch AS export
COPY --from=build /tmp/dist/libcst-1.0.0-cp310-cp310-linux_x86_64.whl .
Could building & publishing a wheel be enbled for musl? 🙏 This would save some hassle for people who just want to install it using pip (myself included).
The text was updated successfully, but these errors were encountered:
@zsol is it possible to append the v1.5.0 release with musllinux tagged wheels? Or have a release v1.5.1 with all of them? Or would you rather wait for the next minor version of libcst?
The library can be built on musl with no issues currently. Confirmed by building it using
alpine:3.17
as a base image:Could building & publishing a wheel be enbled for musl? 🙏 This would save some hassle for people who just want to install it using
pip
(myself included).The text was updated successfully, but these errors were encountered: