Skip to content

Bump pypa/cibuildwheel from 2.17.0 to 2.21.2 #725

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Draft
wants to merge 6 commits into
base: devel
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/reusable-cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ env:
FORCE_COLOR: "1" # Make tools pretty.
PIP_DISABLE_PIP_VERSION_CHECK: "1"
PIP_NO_PYTHON_VERSION_WARNING: "1"
MACOSX_DEPLOYMENT_TARGET: "13.0"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Unclear why this is added. It should never be needed. cibuildwheel is supposed to take care of such things better than us.


jobs:

Expand Down Expand Up @@ -101,7 +102,7 @@ jobs:
shell: bash

- name: Build wheels
uses: pypa/cibuildwheel@v2.17.0
uses: pypa/cibuildwheel@v2.21.2
env:
# CIBW_ARCHS_MACOS: all x86_64 arm64 universal2
CIBW_ARCHS_MACOS: native
Expand Down
3 changes: 3 additions & 0 deletions docs/changelog-fragments/725.packaging.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Updated ``cibuildwheel`` to 2.21.2, in order to start building Python 3.13 wheels.
In doing so, ``MACOSX_DEPLOYMENT_TARGET`` was set to ``13.0`` instead of being undefined.
-- by :user:`Qalthos`
6 changes: 3 additions & 3 deletions requirements-build.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,15 @@ cython==3.0.12
# via -r -
expandvars==0.9.0
# via -r -
packaging==24.0
packaging==24.1
# via setuptools-scm
pyparsing==3.0.9
# via packaging
setuptools-scm==8.1.0
# via -r -
tomli==2.0.1
tomli==2.0.2
# via setuptools-scm
typing-extensions==4.10.0
typing-extensions==4.12.2
# via setuptools-scm
wheel==0.37.1
# via -r -
Expand Down
Loading