Bump wheel from 0.37.1 to 0.38.1 in /collatz-api #14

Open
dependabot[bot] wants to merge 1 commit from dependabot/pip/collatz-api/wheel-0.38.1 into main
dependabot[bot] commented 2023-06-24 23:46:16 -04:00 (Migrated from github.com)

Bumps wheel from 0.37.1 to 0.38.1.

Changelog

Sourced from wheel's changelog.

Release Notes

UNRELEASED

  • Added full support of the build tag syntax to wheel tags (you can now set a build tag like 123mytag)

0.40.0 (2023-03-14)

  • Added a wheel tags command to modify tags on an existing wheel (PR by Henry Schreiner)
  • Updated vendored packaging to 23.0
  • wheel unpack now preserves the executable attribute of extracted files
  • Fixed spaces in platform names not being converted to underscores (PR by David Tucker)
  • Fixed RECORD files in generated wheels missing the regular file attribute
  • Fixed DeprecationWarning about the use of the deprecated pkg_resources API (PR by Thomas Grainger)
  • Wheel now uses flit-core as a build backend (PR by Henry Schreiner)

0.38.4 (2022-11-09)

  • Fixed PKG-INFO conversion in bdist_wheel mangling UTF-8 header values in METADATA (PR by Anderson Bravalheri)

0.38.3 (2022-11-08)

  • Fixed install failure when used with --no-binary, reported on Ubuntu 20.04, by removing setup_requires from setup.cfg

0.38.2 (2022-11-05)

  • Fixed regression introduced in v0.38.1 which broke parsing of wheel file names with multiple platform tags

0.38.1 (2022-11-04)

  • Removed install dependency on setuptools
  • The future-proof fix in 0.36.0 for converting PyPy's SOABI into a abi tag was faulty. Fixed so that future changes in the SOABI will not change the tag.

0.38.0 (2022-10-21)

  • Dropped support for Python < 3.7
  • Updated vendored packaging to 21.3
  • Replaced all uses of distutils with setuptools
  • The handling of license_files (including glob patterns and default values) is now delegated to setuptools>=57.0.0 (#466). The package dependencies were updated to reflect this change.
  • Fixed potential DoS attack via the WHEEL_INFO_RE regular expression

... (truncated)

Commits
  • 6f1608d Created a new release
  • cf8f5ef Moved news item from PR #484 to its proper place
  • 9ec2016 Removed install dependency on setuptools (#483)
  • 747e1f6 Fixed PyPy SOABI parsing (#484)
  • 7627548 [pre-commit.ci] pre-commit autoupdate (#480)
  • 7b9e8e1 Test on Python 3.11 final
  • a04dfef Updated the pypi-publish action
  • 94bb62c Fixed docs not building due to code style changes
  • d635664 Updated the codecov action to the latest version
  • fcb94cd Updated version to match the release
  • Additional commits viewable in compare view

Dependabot compatibility score

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 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 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)
    You can disable automated security fix PRs for this repo from the Security Alerts page.
Bumps [wheel](https://github.com/pypa/wheel) from 0.37.1 to 0.38.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/wheel/blob/main/docs/news.rst">wheel's changelog</a>.</em></p> <blockquote> <h1>Release Notes</h1> <p><strong>UNRELEASED</strong></p> <ul> <li>Added full support of the build tag syntax to <code>wheel tags</code> (you can now set a build tag like <code>123mytag</code>)</li> </ul> <p><strong>0.40.0 (2023-03-14)</strong></p> <ul> <li>Added a <code>wheel tags</code> command to modify tags on an existing wheel (PR by Henry Schreiner)</li> <li>Updated vendored <code>packaging</code> to 23.0</li> <li><code>wheel unpack</code> now preserves the executable attribute of extracted files</li> <li>Fixed spaces in platform names not being converted to underscores (PR by David Tucker)</li> <li>Fixed <code>RECORD</code> files in generated wheels missing the regular file attribute</li> <li>Fixed <code>DeprecationWarning</code> about the use of the deprecated <code>pkg_resources</code> API (PR by Thomas Grainger)</li> <li>Wheel now uses flit-core as a build backend (PR by Henry Schreiner)</li> </ul> <p><strong>0.38.4 (2022-11-09)</strong></p> <ul> <li>Fixed <code>PKG-INFO</code> conversion in <code>bdist_wheel</code> mangling UTF-8 header values in <code>METADATA</code> (PR by Anderson Bravalheri)</li> </ul> <p><strong>0.38.3 (2022-11-08)</strong></p> <ul> <li>Fixed install failure when used with <code>--no-binary</code>, reported on Ubuntu 20.04, by removing <code>setup_requires</code> from <code>setup.cfg</code></li> </ul> <p><strong>0.38.2 (2022-11-05)</strong></p> <ul> <li>Fixed regression introduced in v0.38.1 which broke parsing of wheel file names with multiple platform tags</li> </ul> <p><strong>0.38.1 (2022-11-04)</strong></p> <ul> <li>Removed install dependency on setuptools</li> <li>The future-proof fix in 0.36.0 for converting PyPy's SOABI into a abi tag was faulty. Fixed so that future changes in the SOABI will not change the tag.</li> </ul> <p><strong>0.38.0 (2022-10-21)</strong></p> <ul> <li>Dropped support for Python &lt; 3.7</li> <li>Updated vendored <code>packaging</code> to 21.3</li> <li>Replaced all uses of <code>distutils</code> with <code>setuptools</code></li> <li>The handling of <code>license_files</code> (including glob patterns and default values) is now delegated to <code>setuptools&gt;=57.0.0</code> (<a href="https://redirect.github.com/pypa/wheel/issues/466">#466</a>). The package dependencies were updated to reflect this change.</li> <li>Fixed potential DoS attack via the <code>WHEEL_INFO_RE</code> regular expression</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/wheel/commit/6f1608dc1a88f00d2390b9044bd655753f39234c"><code>6f1608d</code></a> Created a new release</li> <li><a href="https://github.com/pypa/wheel/commit/cf8f5ef50e32b836c4ffb43af68107f78dca8d80"><code>cf8f5ef</code></a> Moved news item from PR <a href="https://redirect.github.com/pypa/wheel/issues/484">#484</a> to its proper place</li> <li><a href="https://github.com/pypa/wheel/commit/9ec201660fa07ee0714edd17c979a7039ea852a4"><code>9ec2016</code></a> Removed install dependency on setuptools (<a href="https://redirect.github.com/pypa/wheel/issues/483">#483</a>)</li> <li><a href="https://github.com/pypa/wheel/commit/747e1f6090547abcf65108c5a229cbe21a64a2ae"><code>747e1f6</code></a> Fixed PyPy SOABI parsing (<a href="https://redirect.github.com/pypa/wheel/issues/484">#484</a>)</li> <li><a href="https://github.com/pypa/wheel/commit/76275484bc0de72d1f56601dbba3e816fc2f00c6"><code>7627548</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pypa/wheel/issues/480">#480</a>)</li> <li><a href="https://github.com/pypa/wheel/commit/7b9e8e1022b9c850756ef34bc1a4a88042988a86"><code>7b9e8e1</code></a> Test on Python 3.11 final</li> <li><a href="https://github.com/pypa/wheel/commit/a04dfef41be0ab10eadbb2ed5d02b600682dc487"><code>a04dfef</code></a> Updated the pypi-publish action</li> <li><a href="https://github.com/pypa/wheel/commit/94bb62cb182023ac6586c5510ae9031ea56bd682"><code>94bb62c</code></a> Fixed docs not building due to code style changes</li> <li><a href="https://github.com/pypa/wheel/commit/d635664abe560d48723cfc3b73c52ad8c906760a"><code>d635664</code></a> Updated the codecov action to the latest version</li> <li><a href="https://github.com/pypa/wheel/commit/fcb94cd51f7dfd40d88dff37415750d9e3638d3b"><code>fcb94cd</code></a> Updated <strong>version</strong> to match the release</li> <li>Additional commits viewable in <a href="https://github.com/pypa/wheel/compare/0.37.1...0.38.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=wheel&package-manager=pip&previous-version=0.37.1&new-version=0.38.1)](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 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) You can disable automated security fix PRs for this repo from the [Security Alerts page](https://github.com/orpheuslummis/Collaptz/network/alerts). </details>
This pull request can be merged automatically.
You are not authorized to merge this pull request.
View command line instructions

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin dependabot/pip/collatz-api/wheel-0.38.1:dependabot/pip/collatz-api/wheel-0.38.1
git switch dependabot/pip/collatz-api/wheel-0.38.1

Merge

Merge the changes and update on Forgejo.

Warning: The "Autodetect manual merge" setting is not enabled for this repository, you will have to mark this pull request as manually merged afterwards.

git switch main
git merge --no-ff dependabot/pip/collatz-api/wheel-0.38.1
git switch dependabot/pip/collatz-api/wheel-0.38.1
git rebase main
git switch main
git merge --ff-only dependabot/pip/collatz-api/wheel-0.38.1
git switch dependabot/pip/collatz-api/wheel-0.38.1
git rebase main
git switch main
git merge --no-ff dependabot/pip/collatz-api/wheel-0.38.1
git switch main
git merge --squash dependabot/pip/collatz-api/wheel-0.38.1
git switch main
git merge --ff-only dependabot/pip/collatz-api/wheel-0.38.1
git switch main
git merge dependabot/pip/collatz-api/wheel-0.38.1
git push origin main
Sign in to join this conversation.
No description provided.