Skip to content

Commit

Permalink
Merge pull request #44 from gattia/macos_build
Browse files Browse the repository at this point in the history
Updating GHA macos build

Fixing build errors for macos with cibuildwheels
  • Loading branch information
gattia authored Mar 22, 2024
2 parents 482252c + 150067f commit dbcf60f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/building-pypi-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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/
Expand Down

0 comments on commit dbcf60f

Please sign in to comment.