From 150067fc8db81edfc23f925578389ed9c883f50f Mon Sep 17 00:00:00 2001 From: Anthony Gatt Date: Fri, 22 Mar 2024 10:37:10 -0700 Subject: [PATCH] Updating GHA macos build --- .github/workflows/building-pypi-linux.yml | 4 ++-- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/building-pypi-linux.yml b/.github/workflows/building-pypi-linux.yml index 5aaeb85..e446240 100644 --- a/.github/workflows/building-pypi-linux.yml +++ b/.github/workflows/building-pypi-linux.yml @@ -60,7 +60,7 @@ jobs: - uses: actions/setup-python@v3 - name: Install cibuildwheel - run: python -m pip install cibuildwheel==2.16.2 + run: python -m pip install cibuildwheel==2.17 - name: Build wheels run: python -m cibuildwheel --output-dir wheelhouse @@ -70,7 +70,7 @@ jobs: - uses: actions/upload-artifact@v4 with: - name: cibw-wheels-${{ matrix.os }} + name: cibw-wheels-${{ matrix.os }}-${{ strategy.job-index }} path: ./wheelhouse/*.whl upload_pypi: diff --git a/pyproject.toml b/pyproject.toml index d3f9beb..eddf195 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,7 +42,7 @@ test-command = "pytest {project}" test-requires = ["pytest"] [tool.cibuildwheel.macos] -archs-macos = ["universal2", "x86_64"] +archs = ["universal2", "x86_64"] # https://github.com/pypa/setuptools_scm/