From 00b99536bc02fdafabcf93df56b93a171bc4edfe Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=81ngel=20Iglesias=20Pr=C3=A9stamo?= <65736636+angelip2303@users.noreply.github.com> Date: Wed, 13 Nov 2024 14:24:58 +0100 Subject: [PATCH] fix: fixing the release --- .github/workflows/python.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index 0c6abc20..e6560a83 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -22,12 +22,11 @@ jobs: - uses: actions/setup-python@v5 with: python-version: ${{ matrix.python-version }} - architecture: x64 + architecture: ${{ matrix.target }} - name: Fix openssl regression run: cargo update openssl-src --precise 300.3.1+3.3.1 - - name: Build wheels uses: PyO3/maturin-action@v1 with: @@ -91,7 +90,7 @@ jobs: strategy: matrix: python-version: [ 3.12 ] - target: [ x64 ] + target: [ x64, aarch64 ] steps: - uses: actions/checkout@v4