Bump the actions group with 2 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 0
(11 months ago)
(11 months ago)
CI: Run cibuildwheel CI: Run cygwin dependencies github_actions
Bumps the actions group with 2 updates: pypa/cibuildwheel and cygwin/cygwin-install-action.
Updates pypa/cibuildwheel from 3.0.0 to 3.0.1
Changelog
Sourced from pypa/cibuildwheel's changelog.
title: Changelog
Changelog
v3.0.1
5 July 2025
- 🛠 Updates CPython 3.14 prerelease to 3.14.0b3 (#2471)
- ✨ Adds a CPython 3.14 prerelease iOS build (only when prerelease builds are enabled) (#2475)
v3.0.0
11 June 2025
See
@henryiii's release post for more info on new features!
🌟 Adds the ability to build wheels for iOS! Set the
platformoption toioson a Mac with the iOS toolchain to try it out! (#2286, #2363, #2432)🌟 Adds support for the GraalPy interpreter! Enable for your project using the
enableoption. (#1538, #2411, #2414)✨ Adds CPython 3.14 support, under the
enableoptioncpython-prerelease. This version of cibuildwheel uses 3.14.0b2. (#2390)While CPython is in beta, the ABI can change, so your wheels might not be compatible with the final release. For this reason, we don't recommend distributing wheels until RC1, at which point 3.14 will be available in cibuildwheel without the flag. (#2390)
✨ Adds the test-sources option, and changes the working directory for tests. (#2062, #2284, #2437)
- If this option is set, cibuildwheel will copy the files and folders specified in
test-sourcesinto the temporary directory we run from. This is required for iOS builds, but also useful for other platforms, as it allows you to avoid placeholders.- If this option is not set, behaviour matches v2.x - cibuildwheel will run the tests from a temporary directory, and you can use the
{project}placeholder in thetest-commandto refer to the project directory. (#2420)✨ Adds
dependency-versionsinline syntax (#2122)✨ Improves support for Pyodide builds and adds the experimental
pyodide-versionoption, which allows you to specify the version of Pyodide to use for builds. (#2002)✨ Add
pyodide-prereleaseenable option, with an early build of 0.28 (Python 3.13). (#2431)✨ Adds the
test-environmentoption, which allows you to set environment variables for the test command. (#2388)✨ Adds the
xbuild-toolsoption, which allows you to specify tools safe for cross-compilation. Currently only used on iOS; will be useful for Android in the future. (#2317)🛠 The default manylinux image has changed from
manylinux2014tomanylinux_2_28. (#2330)🛠 EOL images
manylinux1,manylinux2010,manylinux_2_24andmusllinux_1_1can no longer be specified by their shortname. The full OCI name can still be used for these images, if you wish. (#2316)🛠 Invokes
buildrather thanpip wheelto build wheels by default. You can control this via thebuild-frontendoption. You might notice that you can see your build log output now! (#2321)🛠 Build verbosity settings have been reworked to have consistent meanings between build backends when non-zero. (#2339)
🛠 Removed the
CIBW_PRERELEASE_PYTHONSandCIBW_FREE_THREADED_SUPPORToptions - these have been folded into theenableoption instead. (#2095)🛠 Build environments no longer have setuptools and wheel preinstalled. (#2329)
🛠 Use the standard Schema line for the integrated JSONSchema. (#2433)
⚠️ Dropped support for building Python 3.6 and 3.7 wheels. If you need to build wheels for these versions, use cibuildwheel v2.23.3 or earlier. (#2282)
⚠️ The minimum Python version required to run cibuildwheel is now Python 3.11. You can still build wheels for Python 3.8 and newer. (#1912)
⚠️ 32-bit Linux wheels no longer built by default - the arch was removed from
"auto". It now requires explicit"auto32". Note that modern manylinux images (like the new default,manylinux_2_28) do not have 32-bit versions. (#2458)⚠️ PyPy wheels no longer built by default, due to a change to our options system. To continue building PyPy wheels, you'll now need to set the
enableoption topypyorpypy-eol. (#2095)⚠️ Dropped official support for Appveyor. If it was working for you before, it will probably continue to do so, but we can't be sure, because our CI doesn't run there anymore. (#2386)
📚 A reorganisation of the docs, and numerous updates. (#2280)
📚 Use Python 3.14 color output in docs CLI output. (#2407)
📚 Docs now primarily use the pyproject.toml name of options, rather than the environment variable name. (#2389)
📚 README table now matches docs and auto-updates. (#2427, #2428)
... (truncated)
Commits
95d2f3aBump version: v3.0.140de3fe[pre-commit.ci] pre-commit autoupdate (#2483)9200810feat: added Python 3.14 preview for iOS (#2475)94fe0a2[Bot] Update dependencies (#2482)405ddd5fix: pyodide missing some logging (#2477)34b4f1e[pre-commit.ci] pre-commit autoupdate (#2474)e69b553[Bot] Update dependencies (#2473)3e86452[Bot] Update dependencies (#2471)e737495chore(deps): bump actions/attest-build-provenance from 2.3.0 to 2.4.0 in the ...588dee0docs: include Windows ARM in examples (#2468)- Additional commits viewable in compare view
Updates cygwin/cygwin-install-action from 5 to 6
Release notes
Sourced from cygwin/cygwin-install-action's releases.
v6
What's Changed
- Add warning about using SHELLOPTS to set igncr by
@tobil4skin cygwin/cygwin-install-action#22- Add work-vol option by
@gstraussin cygwin/cygwin-install-action#27- For performance, default work-vol to D: (if it exists) by
@gstraussin cygwin/cygwin-install-action#27- Add a retry mechanism for fetching setup executable by
@jon-turneyin cygwin/cygwin-install-action#26- Check Authenticode signature on setup execitable by
@jon-turney- Give the action some outputs (e.g. so uses can find out where we installed) by
@jon-turneyNew Contributors
@tobil4skmade their first contribution in cygwin/cygwin-install-action#22Full Changelog: https://github.com/cygwin/cygwin-install-action/compare/v5...v6
Commits
f200932Give the action some outputs52b4c10Check Authenticode signature on setupe67b1f4Factor out download retry as a function, to use on sha512.sum file also8381d6dAdd a retry mechanism for fetching setup executable354b337Consistently use throw to terminate with an errorf623c57Add a test of work-vol optiond3a7464Use D: drive as default work-vol1c9eb7cAdd work-vol option to target different setup volumed6a07e1Tweak wording about SHELLOPTS and line-endings63d1e75Add warning about using SHELLOPTS to set igncr- See full diff in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)@dependabot ignore <dependency name> minor versionwill close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)@dependabot ignore <dependency name>will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)@dependabot unignore <dependency name>will remove all of the ignore conditions of the specified dependency@dependabot unignore <dependency name> <ignore condition>will remove the ignore condition of the specified dependency and ignore conditions
Pull Request Statistics
0
0
+0
-0
Package Dependencies
Technical Details
| ID: | 3441467 |
| UUID: | 2665676315 |
| Node ID: | PR_kwDOABUios6e4v4b |
| Host: | GitHub |
| Repository: | matplotlib/matplotlib |