From a7cea5fd1837cd5cf0f66cb7645437f1bf955250 Mon Sep 17 00:00:00 2001 From: Charles Cooper Date: Sun, 14 Apr 2024 13:27:09 -0400 Subject: [PATCH] add a note --- .github/workflows/release.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8044149..30be0cf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,6 +40,11 @@ jobs: uses: PyO3/maturin-action@v1 with: target: ${{ matrix.target }} + # NOTE: pyo3 bindings (the default) will produce a separate wheel + # for every interpreter, while `--bindings cffi` will produce an + # interpreter-agnostic wheel. maturin actually uses `cffi` bindings + # for its own release process, but recommends using `pyo3` for new + # projects for some reason. args: --release --out dist --find-interpreter sccache: 'true' manylinux: auto