From dbba1cff4870f462e34497aba29fb3042356461a Mon Sep 17 00:00:00 2001 From: Diogo Matsubara Date: Fri, 5 Jul 2024 11:51:25 +0200 Subject: [PATCH] fix: remove deprecated maturin arg (#241) (#242) See https://github.com/PyO3/maturin/pull/1620, `--universal2` has been deprecated --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 69098a19..a5354f43 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,7 +72,8 @@ jobs: - name: Build wheels - universal2 uses: messense/maturin-action@v1 with: - args: --release --universal2 --out dist + target: universal2-apple-darwin + args: --release --out dist - name: Upload wheels uses: actions/upload-artifact@v3