Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build(deps): bump pypa/cibuildwheel from 2.16 to 2.17 (deepmodeling#3487
) Bumps [pypa/cibuildwheel](https://github.com/pypa/cibuildwheel) from 2.16 to 2.17. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pypa/cibuildwheel/releases">pypa/cibuildwheel's releases</a>.</em></p> <blockquote> <h2>v2.17.0</h2> <ul> <li>🌟 Adds the ability to inherit configuration in TOML overrides. This makes certain configurations much simpler. If you're overriding an option like <code>before-build</code> or <code>environment</code>, and you just want to add an extra command or environment variable, you can just append (or prepend) to the previous config. See <a href="https://cibuildwheel.pypa.io/en/stable/options/#inherit">the docs</a> for more information. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1730">#1730</a>)</li> <li>🌟 Adds official support for native arm64 macOS GitHub runners. To use them, just specify <code>macos-14</code> as an <code>os</code> of your job in your workflow file. You can also keep <code>macos-13</code> in your build matrix to build x86_64. Check out the new <a href="https://cibuildwheel.pypa.io/en/stable/setup/#github-actions">GitHub Actions example config</a>.</li> <li>✨ You no longer need to specify <code>--platform</code> to run cibuildwheel locally! Instead it will detect your platform automatically. This was a safety feature, no longer necessary. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1727">#1727</a>)</li> <li>🛠 Removed setuptools and wheel pinned versions. This only affects old-style projects without a <code>pyproject.toml</code>, projects with <code>pyproject.toml</code> are already getting fresh versions of their <code>build-system.requires</code> installed into an isolated environment. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1725">#1725</a>)</li> <li>🛠 Improve how the GitHub Action passes arguments (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1757">#1757</a>)</li> <li>🛠 Remove a system-wide install of pipx in the GitHub Action (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1745">#1745</a>)</li> <li>🐛 No longer will cibuildwheel override the PIP_CONSTRAINT environment variable when using the <code>build</code> frontend. Instead it will be extended. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1675">#1675</a>)</li> <li>🐛 Fix a bug where building and testing both x86_86 and arm64 wheels on the same runner caused the wrong architectures in the test environment (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1750">#1750</a>)</li> <li>🐛 Fix a bug that prevented testing a CPython 3.8 wheel targeting macOS 11+ on x86_64 (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1768">#1768</a>)</li> <li>📚 Moved the docs onto the official PyPA domain - they're now available at <a href="https://cibuildwheel.pypa.io">https://cibuildwheel.pypa.io</a> . (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1775">#1775</a>)</li> <li>📚 Docs and examples improvements (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1762">#1762</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1734">#1734</a>)</li> </ul> <h2>v2.16.5</h2> <ul> <li>🐛 Fix an incompatibility with the GitHub Action and new GitHub Runner images for Windows that bundle Powershell 7.3+ (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1741">#1741</a>)</li> <li>🛠 Preliminary support for new <code>macos-14</code> arm64 runners (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1743">#1743</a>)</li> </ul> <h2>v2.16.4</h2> <p>🛠 Update manylinux pins to upgrade from a problematic PyPy version. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1737">#1737</a>)</p> <h2>v2.16.3</h2> <ul> <li>🐛 Fix a bug when building from sdist, where relative paths to files in the package didn't work because the working directory was wrong (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1687">#1687</a>)</li> <li>🛠 Adds the ability to disable mounting the host filesystem in containers to <code>/host</code>, through the <code>disable_host_mount</code> suboption on <a href="https://cibuildwheel.readthedocs.io/en/stable/options/#container-engine"><code>CIBW_CONTAINER_ENGINE</code></a>.</li> <li>📚 A lot of docs improvements! (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1708">#1708</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1705">#1705</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1686">#1686</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1679">#1679</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1667">#1667</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1665">#1665</a>)</li> </ul> <h2>v2.16.2</h2> <ul> <li>🛠 Updates CPython 3.12 version to 3.12.0, final release (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1635">#1635</a>)</li> <li>✨ Adds a debug option <a href="https://cibuildwheel.readthedocs.io/en/stable/options/#cibw_debug_keep_container"><code>CIBW_DEBUG_KEEP_CONTAINER</code></a> to stop cibuildwheel deleting build containers after the build finishes. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1620">#1620</a>)</li> <li>📚 Adds support for <code>[tool.cibuildwheel]</code> checking by adding a schema compatible with the <a href="https://github.com/abravalheri/validate-pyproject/">validate-pyproject</a> tool (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1622">#1622</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1628">#1628</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1629">#1629</a>)</li> <li>🐛 Fix parsing of <code>CIBW_CONTAINER_ENGINE</code> and <code>CIBW_BUILD_FRONTEND</code> options to not break arguments on <code>:</code> characters (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1621">#1621</a>)</li> <li>🐛 Fix the evaluation order of <code>CIBW_ENVIRONMENT</code> and <code>CIBW_ENVIRONMENT_PASS</code> so that <code>CIBW_ENVIRONMENT</code> assignments can reference environment variables passed through from the host machine. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1617">#1617</a>)</li> <li>🛠 Supports manylinux images' deferred installation of interpreters through the <code>manylinux-interpreters</code> tool (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1630">#1630</a>)</li> </ul> <h2>v2.16.1</h2> <ul> <li>🛠 Updates the prerelease CPython 3.12 version to 3.12.0rc3 (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1625">#1625</a>)</li> <li>🛠 Only calls <code>linux32</code> in containers when necessary (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1599">#1599</a>)</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/cibuildwheel/blob/main/docs/changelog.md">pypa/cibuildwheel's changelog</a>.</em></p> <blockquote> <hr /> <h2>title: Changelog</h2> <h1>Changelog</h1> <h3>v2.17.0</h3> <p><em>11 March 2024</em></p> <ul> <li>🌟 Adds the ability to inherit configuration in TOML overrides. This makes certain configurations much simpler. If you're overriding an option like <code>before-build</code> or <code>environment</code>, and you just want to add an extra command or environment variable, you can just append (or prepend) to the previous config. See <a href="https://cibuildwheel.pypa.io/en/stable/options/#inherit">the docs</a> for more information. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1730">#1730</a>)</li> <li>🌟 Adds official support for native arm64 macOS GitHub runners. To use them, just specify <code>macos-14</code> as an <code>os</code> of your job in your workflow file. You can also keep <code>macos-13</code> in your build matrix to build x86_64. Check out the new <a href="https://cibuildwheel.pypa.io/en/stable/setup/#github-actions">GitHub Actions example config</a>.</li> <li>✨ You no longer need to specify <code>--platform</code> to run cibuildwheel locally! Instead it will detect your platform automatically. This was a safety feature, no longer necessary. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1727">#1727</a>)</li> <li>🛠 Removed setuptools and wheel pinned versions. This only affects old-style projects without a <code>pyproject.toml</code>, projects with <code>pyproject.toml</code> are already getting fresh versions of their <code>build-system.requires</code> installed into an isolated environment. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1725">#1725</a>)</li> <li>🛠 Improve how the GitHub Action passes arguments (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1757">#1757</a>)</li> <li>🛠 Remove a system-wide install of pipx in the GitHub Action (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1745">#1745</a>)</li> <li>🐛 No longer will cibuildwheel override the PIP_CONSTRAINT environment variable when using the <code>build</code> frontend. Instead it will be extended. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1675">#1675</a>)</li> <li>🐛 Fix a bug where building and testing both x86_86 and arm64 wheels on the same runner caused the wrong architectures in the test environment (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1750">#1750</a>)</li> <li>🐛 Fix a bug that prevented testing a CPython 3.8 wheel targeting macOS 11+ on x86_64 (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1768">#1768</a>)</li> <li>📚 Moved the docs onto the official PyPA domain - they're now available at <a href="https://cibuildwheel.pypa.io">https://cibuildwheel.pypa.io</a> . (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1775">#1775</a>)</li> <li>📚 Docs and examples improvements (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1762">#1762</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1734">#1734</a>)</li> </ul> <h3>v2.16.5</h3> <p><em>30 January 2024</em></p> <ul> <li>🐛 Fix an incompatibility with the GitHub Action and new GitHub Runner images for Windows that bundle Powershell 7.3+ (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1741">#1741</a>)</li> <li>🛠 Preliminary support for new <code>macos-14</code> arm64 runners (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1743">#1743</a>)</li> </ul> <h3>v2.16.4</h3> <p><em>28 January 2024</em></p> <ul> <li>🛠 Update manylinux pins to upgrade from a problematic PyPy version. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1737">#1737</a>)</li> </ul> <h3>v2.16.3</h3> <p><em>26 January 2024</em></p> <ul> <li>🐛 Fix a bug when building from sdist, where relative paths to files in the package didn't work because the working directory was wrong (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1687">#1687</a>)</li> <li>🛠 Adds the ability to disable mounting the host filesystem in containers to <code>/host</code>, through the <code>disable_host_mount</code> suboption on <a href="https://cibuildwheel.pypa.io/en/stable/options/#container-engine"><code>CIBW_CONTAINER_ENGINE</code></a>.</li> <li>📚 A lot of docs improvements! (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1708">#1708</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1705">#1705</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1686">#1686</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1679">#1679</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1667">#1667</a>, <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1665">#1665</a>)</li> </ul> <h3>v2.16.2</h3> <p><em>3 October 2023</em></p> <ul> <li>🛠 Updates CPython 3.12 version to 3.12.0, final release (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1635">#1635</a>)</li> <li>✨ Adds a debug option <a href="https://cibuildwheel.pypa.io/en/stable/options/#cibw_debug_keep_container"><code>CIBW_DEBUG_KEEP_CONTAINER</code></a> to stop cibuildwheel deleting build containers after the build finishes. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1620">#1620</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/cibuildwheel/commit/8d945475ac4b1aac4ae08b2fd27db9917158b6ce"><code>8d94547</code></a> Bump version: v2.17.0</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/ca06deb26f92b2b2c6019a3bc223875215fe4cf2"><code>ca06deb</code></a> Merge pull request <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1775">#1775</a> from pypa/doc-domain</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/f7e19222253830775777d4dc7e8cf56aa098d97f"><code>f7e1922</code></a> CirrusCI fixes (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1786">#1786</a>)</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/0d8e919dfc5b7631e641377671db317556dcc7ef"><code>0d8e919</code></a> [Bot] Update dependencies (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1784">#1784</a>)</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/022de07dc13bb25455653a082449a0c038632ac0"><code>022de07</code></a> Merge pull request <a href="https://redirect.github.com/pypa/cibuildwheel/issues/1785">#1785</a> from pypa/revert-1783</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/920f574191fe30782d55398b7a0e70d62c999024"><code>920f574</code></a> Remove manylinux1 docker pin</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/5c06f3c28934b3830d065b17ab853c4465ce6623"><code>5c06f3c</code></a> docs: Add how to run tests in development (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1698">#1698</a>)</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/e2a0839555d4d2ffd366ac4cd933262f5974fd10"><code>e2a0839</code></a> fix: set SYSTEM_VERSION_COMPAT=0 during pip install on macos (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1768">#1768</a>)</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/87fff7728267ddada9c54df079e5864e5c5e5dfb"><code>87fff77</code></a> chore(deps): bump the actions group with 1 update (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1776">#1776</a>)</li> <li><a href="https://github.com/pypa/cibuildwheel/commit/8ef9486aab2cc0aea71870a765265e294d84a679"><code>8ef9486</code></a> Add <code>pedalboard</code> to projects.yml. (<a href="https://redirect.github.com/pypa/cibuildwheel/issues/1781">#1781</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pypa/cibuildwheel/compare/v2.16...v2.17">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=pypa/cibuildwheel&package-manager=github_actions&previous-version=2.16&new-version=2.17)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> (cherry picked from commit be95d09)
- Loading branch information