dynatrace-extensions / dt-extensions-python-sdk

Dynatrace Python Extensions SDK
https://dynatrace-extensions.github.io/dt-extensions-python-sdk/
MIT License
8 stars 1 forks source link

Allow building only for the extra platforms #83

Open dlopes7 opened 3 months ago

dlopes7 commented 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.