Skip to content

Commit

Permalink
Bump pypa/cibuildwheel from 2.19.2 to 2.20.0 in the actions group (#214)
Browse files Browse the repository at this point in the history
* Bump pypa/cibuildwheel from 2.19.2 to 2.20.0 in the actions group

Bumps the actions group with 1 update: [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel).


Updates `pypa/cibuildwheel` from 2.19.2 to 2.20.0
- [Release notes](https://github.com/pypa/cibuildwheel/releases)
- [Changelog](https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md)
- [Commits](pypa/cibuildwheel@v2.19.2...v2.20.0)

---
updated-dependencies:
- dependency-name: pypa/cibuildwheel
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: actions
...

Signed-off-by: dependabot[bot] <support@github.com>

* bump pipx installation of cbuildwheel to match

* skip `cp313-*`: `numpy` dep not available

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Alex Lancaster <alexlancaster@users.noreply.github.com>
  • Loading branch information
dependabot[bot] and alexlancaster authored Aug 6, 2024
1 parent 2f80e15 commit 4e8d6fe
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ jobs:
- uses: actions/checkout@v4
- name: Install cibuildwheel
# Nb. keep cibuildwheel version pin consistent with job below
run: pipx install cibuildwheel==2.19.2
run: pipx install cibuildwheel==2.20.0
- id: set-matrix
run: |
echo "CI_ONLY" $CI_ONLY
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
with:
platforms: all
- name: Build and test wheels
uses: pypa/cibuildwheel@v2.19.2
uses: pypa/cibuildwheel@v2.20.0
env:
# FIXME: only run the slow tests when doing regular pushes, or manual - not for PRs
CIBW_TEST_COMMAND: "pytest -v {package}/tests ${{ (github.event_name == 'push' || github.event_name == 'workflow_dispatch') && '--runslow' || '' }}"
Expand Down
3 changes: 2 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ testpaths = [
skip = ["*-win32", "*_i686", # skip 32-bit builds
"pp37-*", "pp310-*", # skip certain PyPy configurations
"pp*_aarch64 ", # no numpy wheels for aarch64 on PyPy
"cp36-musllinux_*", "cp37-musllinux_*", "cp38-musllinux_*"] # older musllinux missing numpy wheels
"cp36-musllinux_*", "cp37-musllinux_*", "cp38-musllinux_*", # older musllinux missing numpy wheels
"cp313-*"] # numpy dep not yet available for Python 3.13
test-extras = ["test"]
test-command = "pytest -v {package}/tests"
# FIXME: add below test-command unit tests need to be saved
Expand Down

0 comments on commit 4e8d6fe

Please sign in to comment.