From e9020f942e8f75a4ea576fe525b28a150f2169a3 Mon Sep 17 00:00:00 2001 From: dante <45801863+alexander-camuto@users.noreply.github.com> Date: Mon, 13 May 2024 13:29:51 +0900 Subject: [PATCH] fix: python build matrix (#797) --- .github/workflows/pypi.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index 20a4b0abd..d65584dfd 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -50,6 +50,7 @@ jobs: target: ${{ matrix.target }} args: --release --out dist --features python-bindings - name: Install built wheel + if: matrix.target == 'universal2-apple-darwin' run: | pip install ezkl --no-index --find-links dist --force-reinstall python -c "import ezkl" @@ -110,7 +111,7 @@ jobs: if: startsWith(github.ref, 'refs/tags/') strategy: matrix: - target: [x86_64, i686] + target: [x86_64] steps: - uses: actions/checkout@v4 - uses: actions/setup-python@v4