Open dlopes7 opened 3 months ago
If I am building on arm64, I need a way to build an extension that runs on Linux and Windows on amd64 even with binary dependencies This can fail today if for instance a certain package doesn't have an arm64 wheel
This would be the equivalent of
pip wheel --no-deps -w extension/lib . pip download --only-binary=:all: --platform win_amd64 -d extension/lib .
We should introduce a flag that would add that --no-deps, which doesn't exist today.
--no-deps
If I am building on arm64, I need a way to build an extension that runs on Linux and Windows on amd64 even with binary dependencies This can fail today if for instance a certain package doesn't have an arm64 wheel
This would be the equivalent of
We should introduce a flag that would add that
--no-deps
, which doesn't exist today.