-
Notifications
You must be signed in to change notification settings - Fork 3.1k
[pip 25.1] assert req.source_dir
fails with the legacy resolver enabled
#13353
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
Comments
We can't do anything unless we have reproduction steps. Please do update your issue with reproduction information. Installing certifi from source on Python 3.9 does result in the bdist_wheel deprecation warning, but it builds just fine. |
Hi everyone, currently don't have time to fully reproduce the bug, but I am experiencing the same error while installing a custom package as well in our environment. Pinned requirements used to build just fine with pip 25.0.1, but after our build environment migrated to pip 25.1 we started experiencing build failures at the same line mentioned by @ramannanda9 (assertion error while loonking for source_dir). |
Given that there is only two reports of this bug, there still isn't anything we can do. We could revert the commit as it was simply a refactoring change, but I don't want to do that unless we know why it's broken and the severity of the bug (which for all we can tell is rather limited). If anyone else is affected by this crash, please send in a minimum reproduction example. We cannot do anything otherwise. |
One particular thing that could shed light on this issue - are the people experiencing this bug just using pip as a command line tool, or are they using code that imports pip in some way? Because we changed the test to an assert because pip should never be passing a requirement without a If the issue is triggered by importing pip and using internals somehow, then such usage is not supported, as people will be aware. We may still be able to help, but not without understanding what people are trying to do (and of course, as it's unsupported usage, there are no guarantees). Either way, we can do nothing without a description of how to trigger the issue. |
I'd be in favor of leaving the assert in place until we receive a reproducer, which I'll be happy to investigate rapidly. The reason I made this an assert is that while I thought it could never happen, I had doubts, and it is critical to understand in which circumstances this |
I have stumbled upon this issue as well. Simple way to reproduce it:
|
@Rahlir thanks! I tried this but it does not reproduce: #!/bin/bash
set -eaux
venv=$(mktemp -d)
python3.9 -m venv $venv
$venv/bin/pip install --upgrade pip
$venv/bin/pip install aiohttp[speedups]==3.11.16 Can you provide additional information? Maybe Edit: same with python 3.11.12, and 3.11.9. |
Facing the same issue, @sbidoul Attaching Dockerfile and requirements.txt to reproduce this issue. |
@avengersassemble I'm not near a computer right now but can you please check without |
Ups, you are right, this is due to the Is there a reason this fails with the legacy-resolver? I guess I will remove it from our config for now (not sure what was the original reason that we used it). |
Yep it has to do with deprecated resolver flag, something not easy to switch out. bash-5.2# pip install --use-deprecated=legacy-resolver "certifi"
Looking in indexes: https://artifactory.vertigo.stitchfix.com/artifactory/api/pypi/stitchpy/simple
Requirement already satisfied: certifi in /usr/local/lib/python3.11/site-packages (2025.4.26)
ERROR: Exception:
Traceback (most recent call last):
File "/usr/local/lib/python3.11/site-packages/pip/_internal/cli/base_command.py", line 105, in _run_wrapper
status = _inner_run()
^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/pip/_internal/cli/base_command.py", line 96, in _inner_run
return self.run(options, args)
^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/pip/_internal/cli/req_command.py", line 68, in wrapper
return func(self, options, args)
^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/pip/_internal/commands/install.py", line 421, in run
reqs_to_build = [
^
File "/usr/local/lib/python3.11/site-packages/pip/_internal/commands/install.py", line 424, in <listcomp>
if should_build_for_install_command(r)
^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/pip/_internal/wheel_builder.py", line 65, in should_build_for_install_command
return _should_build(req)
^^^^^^^^^^^^^^^^^^
File "/usr/local/lib/python3.11/site-packages/pip/_internal/wheel_builder.py", line 53, in _should_build
assert req.source_dir
^^^^^^^^^^^^^^
AssertionError |
Yep, the build fails with the requirements mentioned in my file without legacy resolver. So, I am not able to reproduce the same issue. |
When the current resolver was made default in 20.3 there were a lot of users who had difficulty using it for a variety of reasons. At this point though I hope only a very small number of users actually have a use case that requires the legacy resolver. |
The answer of why it fails with the legacy resolver is that we don't really support the legacy resolver anymore. We have some tests, but we haven't added any legacy resolver tests since well.. it was NOT legacy. We've kept it around because its removal would've been quite disruptive. I'm not sure how disruptive it would be today, but in general, it hasn't been a burden either so it's been left alone. |
assert req.source_dir
fails with the legacy resolver enabled
In the Would it be worth adding some deprecation warnings to the log output in pip 25.2 as a first small step towards https://github.com/pypa/pip/milestone/47 ? At the very least, such deprecation warnings would make issues like this one easier for maintainers to debug (particularly for cases where the user has the legacy resolver unknowingly enabled via global config or env var). |
The idea is that warnings aren't needed, because the requirement to explicitly opt into the deprecated behaviour is enough. However, I feel that we might have let people get complacent by not making any progress on removal - it's been nearly 5 years now 🙁 I'm -1 on adding warnings to the log output, but I could see some value to adding a warning message to the normal output. Doing so would almost certainly break some people's workflows, but I don't see how we can move towards removal without starting to be more aggressive about breaking things. As far as this particular issue is concerned, do we want to say that people affected need to pin to 25.0? Does the problem affect all uses of the legacy resolver, or just a small fraction of them? We could just revert the assertion, but surely at some point we need to stop keeping the legacy resolver alive... |
By log output, I mean the normal output (I didn't realise pip even wrote logs to a file for successful builds?). |
I think the best way forward on that milestone is probably to ask if the various issues on there still exist (specifically, are people still using I'm not sure we should issue a warning before we can state a firm removal date.
Ah, OK. I assumed you meant the debug output or something like that which wasn't visible by default. |
FWIW I'm going to take a quick look tonight and see if there's a simple fix for this specific issue. Deciding when to remove the legacy resolver is probably a separate issue (and there probably is a years old issue knocking around for exactly that). |
I would say certain times the legacy resolver was kept in place because you want to force install certain requirements at the beginning, the new resolver would just error out in trying to find compatible requirements, legacy resolver would have just warned, if "incompatible" stuff was there. It's still there in many codebases.. |
@ramannanda9 Unfortunately, that's not a good reason for pip to retain the legacy resolver. Being able to install a set of requirements that are incompatible was a bug in the legacy resolver, and supporting people who rely on that bug has never been a goal. If projects want to continue using that capability, then at some point they will have to pin their version of pip. |
There are two other options for users with this use case:
|
I have a simple reproducer:
The issue appears to be triggered by already installed packages, I suspect in the legacy resolver's |
I propose a fix in #13363 |
Bumps [pip](https://github.com/pypa/pip) from 25.1 to 25.1.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/pip/blob/main/NEWS.rst">pip's changelog</a>.</em></p> <blockquote> <h1>25.1.1 (2025-05-02)</h1> <h2>Bug Fixes</h2> <ul> <li>Fix <code>req.source_dir</code> AssertionError when using the legacy resolver. (<code>[#13353](pypa/pip#13353) <https://github.com/pypa/pip/issues/13353></code>_)</li> <li>Fix crash on Python 3.9.6 and lower when pip failed to compile a Python module during installation. (<code>[#13364](pypa/pip#13364) <https://github.com/pypa/pip/issues/13364></code>_)</li> <li>Names in dependency group includes are now normalized before lookup, which fixes incorrect <code>Dependency group '...' not found</code> errors. (<code>[#13372](pypa/pip#13372) <https://github.com/pypa/pip/issues/13372></code>_)</li> </ul> <h2>Vendored Libraries</h2> <ul> <li>Fix issues with using tomllib from the stdlib if available, rather than tomli</li> <li>Upgrade dependency-groups to 1.3.1</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/pip/commit/01857ef79f59a98db592bacb6e7b48f354528c80"><code>01857ef</code></a> Bump for release</li> <li><a href="https://github.com/pypa/pip/commit/08d8bb91e2c7734f98f828e28215aba15784012a"><code>08d8bb9</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13374">#13374</a> from pfmoore/fixups</li> <li><a href="https://github.com/pypa/pip/commit/2bff84e495a3d31008088c168c5ab9bfa633a172"><code>2bff84e</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13363">#13363</a> from sbidoul/fix-source_dir-assert</li> <li><a href="https://github.com/pypa/pip/commit/644e71d6e339035836dce0adbf59f881b334e186"><code>644e71d</code></a> News file fixups</li> <li><a href="https://github.com/pypa/pip/commit/426856f496a8f84f1e36fded83b3d5e74968a786"><code>426856f</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13364">#13364</a> from ichard26/bugfix/python39</li> <li><a href="https://github.com/pypa/pip/commit/b7e3aead483baf42ca00e29b9758338ad19c130b"><code>b7e3aea</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13356">#13356</a> from eli-schwartz/tomllib</li> <li><a href="https://github.com/pypa/pip/commit/8c678fe85daaf11d8dd6a43b7835088513944655"><code>8c678fe</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13373">#13373</a> from sirosen/update-vendored-dependency-groups</li> <li><a href="https://github.com/pypa/pip/commit/7d006399c0d0d38e55d56a6b0732e959bf75f796"><code>7d00639</code></a> Update newsfiles for dependency-groups patch</li> <li><a href="https://github.com/pypa/pip/commit/6d28bbf065a292f67d3d66d8f47fba15a1a2d512"><code>6d28bbf</code></a> Update version of <code>dependency-groups</code> to v1.3.1</li> <li><a href="https://github.com/pypa/pip/commit/94bd66d615d5f9036c53196f4f2acb7c71d5010c"><code>94bd66d</code></a> Revert StreamWrapper removal to restore Python 3.9.{0,6} compat</li> <li>Additional commits viewable in <a href="https://github.com/pypa/pip/compare/25.1...25.1.1">compare view</a></li> </ul> </details> <br /> [](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>
Bumps [pip](https://github.com/pypa/pip) from 25.1 to 25.1.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/pip/blob/main/NEWS.rst">pip's changelog</a>.</em></p> <blockquote> <h1>25.1.1 (2025-05-02)</h1> <h2>Bug Fixes</h2> <ul> <li>Fix <code>req.source_dir</code> AssertionError when using the legacy resolver. (<code>[#13353](pypa/pip#13353) <https://github.com/pypa/pip/issues/13353></code>_)</li> <li>Fix crash on Python 3.9.6 and lower when pip failed to compile a Python module during installation. (<code>[#13364](pypa/pip#13364) <https://github.com/pypa/pip/issues/13364></code>_)</li> <li>Names in dependency group includes are now normalized before lookup, which fixes incorrect <code>Dependency group '...' not found</code> errors. (<code>[#13372](pypa/pip#13372) <https://github.com/pypa/pip/issues/13372></code>_)</li> </ul> <h2>Vendored Libraries</h2> <ul> <li>Fix issues with using tomllib from the stdlib if available, rather than tomli</li> <li>Upgrade dependency-groups to 1.3.1</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/pip/commit/01857ef79f59a98db592bacb6e7b48f354528c80"><code>01857ef</code></a> Bump for release</li> <li><a href="https://github.com/pypa/pip/commit/08d8bb91e2c7734f98f828e28215aba15784012a"><code>08d8bb9</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13374">#13374</a> from pfmoore/fixups</li> <li><a href="https://github.com/pypa/pip/commit/2bff84e495a3d31008088c168c5ab9bfa633a172"><code>2bff84e</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13363">#13363</a> from sbidoul/fix-source_dir-assert</li> <li><a href="https://github.com/pypa/pip/commit/644e71d6e339035836dce0adbf59f881b334e186"><code>644e71d</code></a> News file fixups</li> <li><a href="https://github.com/pypa/pip/commit/426856f496a8f84f1e36fded83b3d5e74968a786"><code>426856f</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13364">#13364</a> from ichard26/bugfix/python39</li> <li><a href="https://github.com/pypa/pip/commit/b7e3aead483baf42ca00e29b9758338ad19c130b"><code>b7e3aea</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13356">#13356</a> from eli-schwartz/tomllib</li> <li><a href="https://github.com/pypa/pip/commit/8c678fe85daaf11d8dd6a43b7835088513944655"><code>8c678fe</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13373">#13373</a> from sirosen/update-vendored-dependency-groups</li> <li><a href="https://github.com/pypa/pip/commit/7d006399c0d0d38e55d56a6b0732e959bf75f796"><code>7d00639</code></a> Update newsfiles for dependency-groups patch</li> <li><a href="https://github.com/pypa/pip/commit/6d28bbf065a292f67d3d66d8f47fba15a1a2d512"><code>6d28bbf</code></a> Update version of <code>dependency-groups</code> to v1.3.1</li> <li><a href="https://github.com/pypa/pip/commit/94bd66d615d5f9036c53196f4f2acb7c71d5010c"><code>94bd66d</code></a> Revert StreamWrapper removal to restore Python 3.9.{0,6} compat</li> <li>Additional commits viewable in <a href="https://github.com/pypa/pip/compare/25.1...25.1.1">compare view</a></li> </ul> </details> <br /> [](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>
Bumps [pip](https://github.com/pypa/pip) from 25.1 to 25.1.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/pip/blob/main/NEWS.rst">pip's changelog</a>.</em></p> <blockquote> <h1>25.1.1 (2025-05-02)</h1> <h2>Bug Fixes</h2> <ul> <li>Fix <code>req.source_dir</code> AssertionError when using the legacy resolver. (<code>[#13353](pypa/pip#13353) <https://github.com/pypa/pip/issues/13353></code>_)</li> <li>Fix crash on Python 3.9.6 and lower when pip failed to compile a Python module during installation. (<code>[#13364](pypa/pip#13364) <https://github.com/pypa/pip/issues/13364></code>_)</li> <li>Names in dependency group includes are now normalized before lookup, which fixes incorrect <code>Dependency group '...' not found</code> errors. (<code>[#13372](pypa/pip#13372) <https://github.com/pypa/pip/issues/13372></code>_)</li> </ul> <h2>Vendored Libraries</h2> <ul> <li>Fix issues with using tomllib from the stdlib if available, rather than tomli</li> <li>Upgrade dependency-groups to 1.3.1</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/pip/commit/01857ef79f59a98db592bacb6e7b48f354528c80"><code>01857ef</code></a> Bump for release</li> <li><a href="https://github.com/pypa/pip/commit/08d8bb91e2c7734f98f828e28215aba15784012a"><code>08d8bb9</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13374">#13374</a> from pfmoore/fixups</li> <li><a href="https://github.com/pypa/pip/commit/2bff84e495a3d31008088c168c5ab9bfa633a172"><code>2bff84e</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13363">#13363</a> from sbidoul/fix-source_dir-assert</li> <li><a href="https://github.com/pypa/pip/commit/644e71d6e339035836dce0adbf59f881b334e186"><code>644e71d</code></a> News file fixups</li> <li><a href="https://github.com/pypa/pip/commit/426856f496a8f84f1e36fded83b3d5e74968a786"><code>426856f</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13364">#13364</a> from ichard26/bugfix/python39</li> <li><a href="https://github.com/pypa/pip/commit/b7e3aead483baf42ca00e29b9758338ad19c130b"><code>b7e3aea</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13356">#13356</a> from eli-schwartz/tomllib</li> <li><a href="https://github.com/pypa/pip/commit/8c678fe85daaf11d8dd6a43b7835088513944655"><code>8c678fe</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13373">#13373</a> from sirosen/update-vendored-dependency-groups</li> <li><a href="https://github.com/pypa/pip/commit/7d006399c0d0d38e55d56a6b0732e959bf75f796"><code>7d00639</code></a> Update newsfiles for dependency-groups patch</li> <li><a href="https://github.com/pypa/pip/commit/6d28bbf065a292f67d3d66d8f47fba15a1a2d512"><code>6d28bbf</code></a> Update version of <code>dependency-groups</code> to v1.3.1</li> <li><a href="https://github.com/pypa/pip/commit/94bd66d615d5f9036c53196f4f2acb7c71d5010c"><code>94bd66d</code></a> Revert StreamWrapper removal to restore Python 3.9.{0,6} compat</li> <li>Additional commits viewable in <a href="https://github.com/pypa/pip/compare/25.1...25.1.1">compare view</a></li> </ul> </details> <br /> [](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>
Bumps [pip](https://github.com/pypa/pip) from 25.1 to 25.1.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/pip/blob/main/NEWS.rst">pip's changelog</a>.</em></p> <blockquote> <h1>25.1.1 (2025-05-02)</h1> <h2>Bug Fixes</h2> <ul> <li>Fix <code>req.source_dir</code> AssertionError when using the legacy resolver. (<code>[#13353](pypa/pip#13353) <https://github.com/pypa/pip/issues/13353></code>_)</li> <li>Fix crash on Python 3.9.6 and lower when pip failed to compile a Python module during installation. (<code>[#13364](pypa/pip#13364) <https://github.com/pypa/pip/issues/13364></code>_)</li> <li>Names in dependency group includes are now normalized before lookup, which fixes incorrect <code>Dependency group '...' not found</code> errors. (<code>[#13372](pypa/pip#13372) <https://github.com/pypa/pip/issues/13372></code>_)</li> </ul> <h2>Vendored Libraries</h2> <ul> <li>Fix issues with using tomllib from the stdlib if available, rather than tomli</li> <li>Upgrade dependency-groups to 1.3.1</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/pip/commit/01857ef79f59a98db592bacb6e7b48f354528c80"><code>01857ef</code></a> Bump for release</li> <li><a href="https://github.com/pypa/pip/commit/08d8bb91e2c7734f98f828e28215aba15784012a"><code>08d8bb9</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13374">#13374</a> from pfmoore/fixups</li> <li><a href="https://github.com/pypa/pip/commit/2bff84e495a3d31008088c168c5ab9bfa633a172"><code>2bff84e</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13363">#13363</a> from sbidoul/fix-source_dir-assert</li> <li><a href="https://github.com/pypa/pip/commit/644e71d6e339035836dce0adbf59f881b334e186"><code>644e71d</code></a> News file fixups</li> <li><a href="https://github.com/pypa/pip/commit/426856f496a8f84f1e36fded83b3d5e74968a786"><code>426856f</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13364">#13364</a> from ichard26/bugfix/python39</li> <li><a href="https://github.com/pypa/pip/commit/b7e3aead483baf42ca00e29b9758338ad19c130b"><code>b7e3aea</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13356">#13356</a> from eli-schwartz/tomllib</li> <li><a href="https://github.com/pypa/pip/commit/8c678fe85daaf11d8dd6a43b7835088513944655"><code>8c678fe</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13373">#13373</a> from sirosen/update-vendored-dependency-groups</li> <li><a href="https://github.com/pypa/pip/commit/7d006399c0d0d38e55d56a6b0732e959bf75f796"><code>7d00639</code></a> Update newsfiles for dependency-groups patch</li> <li><a href="https://github.com/pypa/pip/commit/6d28bbf065a292f67d3d66d8f47fba15a1a2d512"><code>6d28bbf</code></a> Update version of <code>dependency-groups</code> to v1.3.1</li> <li><a href="https://github.com/pypa/pip/commit/94bd66d615d5f9036c53196f4f2acb7c71d5010c"><code>94bd66d</code></a> Revert StreamWrapper removal to restore Python 3.9.{0,6} compat</li> <li>Additional commits viewable in <a href="https://github.com/pypa/pip/compare/25.1...25.1.1">compare view</a></li> </ul> </details> <br /> [](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>
Bumps the ci group in /.github/workflows with 2 updates: [pip](https://github.com/pypa/pip) and [poetry](https://github.com/python-poetry/poetry). Updates `pip` from 25.1 to 25.1.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/pip/blob/main/NEWS.rst">pip's changelog</a>.</em></p> <blockquote> <h1>25.1.1 (2025-05-02)</h1> <h2>Bug Fixes</h2> <ul> <li>Fix <code>req.source_dir</code> AssertionError when using the legacy resolver. (<code>[#13353](pypa/pip#13353) <https://github.com/pypa/pip/issues/13353></code>_)</li> <li>Fix crash on Python 3.9.6 and lower when pip failed to compile a Python module during installation. (<code>[#13364](pypa/pip#13364) <https://github.com/pypa/pip/issues/13364></code>_)</li> <li>Names in dependency group includes are now normalized before lookup, which fixes incorrect <code>Dependency group '...' not found</code> errors. (<code>[#13372](pypa/pip#13372) <https://github.com/pypa/pip/issues/13372></code>_)</li> </ul> <h2>Vendored Libraries</h2> <ul> <li>Fix issues with using tomllib from the stdlib if available, rather than tomli</li> <li>Upgrade dependency-groups to 1.3.1</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/pip/commit/01857ef79f59a98db592bacb6e7b48f354528c80"><code>01857ef</code></a> Bump for release</li> <li><a href="https://github.com/pypa/pip/commit/08d8bb91e2c7734f98f828e28215aba15784012a"><code>08d8bb9</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13374">#13374</a> from pfmoore/fixups</li> <li><a href="https://github.com/pypa/pip/commit/2bff84e495a3d31008088c168c5ab9bfa633a172"><code>2bff84e</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13363">#13363</a> from sbidoul/fix-source_dir-assert</li> <li><a href="https://github.com/pypa/pip/commit/644e71d6e339035836dce0adbf59f881b334e186"><code>644e71d</code></a> News file fixups</li> <li><a href="https://github.com/pypa/pip/commit/426856f496a8f84f1e36fded83b3d5e74968a786"><code>426856f</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13364">#13364</a> from ichard26/bugfix/python39</li> <li><a href="https://github.com/pypa/pip/commit/b7e3aead483baf42ca00e29b9758338ad19c130b"><code>b7e3aea</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13356">#13356</a> from eli-schwartz/tomllib</li> <li><a href="https://github.com/pypa/pip/commit/8c678fe85daaf11d8dd6a43b7835088513944655"><code>8c678fe</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13373">#13373</a> from sirosen/update-vendored-dependency-groups</li> <li><a href="https://github.com/pypa/pip/commit/7d006399c0d0d38e55d56a6b0732e959bf75f796"><code>7d00639</code></a> Update newsfiles for dependency-groups patch</li> <li><a href="https://github.com/pypa/pip/commit/6d28bbf065a292f67d3d66d8f47fba15a1a2d512"><code>6d28bbf</code></a> Update version of <code>dependency-groups</code> to v1.3.1</li> <li><a href="https://github.com/pypa/pip/commit/94bd66d615d5f9036c53196f4f2acb7c71d5010c"><code>94bd66d</code></a> Revert StreamWrapper removal to restore Python 3.9.{0,6} compat</li> <li>Additional commits viewable in <a href="https://github.com/pypa/pip/compare/25.1...25.1.1">compare view</a></li> </ul> </details> <br /> Updates `poetry` from 2.1.2 to 2.1.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/python-poetry/poetry/releases">poetry's releases</a>.</em></p> <blockquote> <h2>2.1.3</h2> <h3>Changed</h3> <ul> <li>Require <code>importlib-metadata<8.7</code> for Python 3.9 because of a breaking change in importlib-metadata 8.7 (<a href="https://redirect.github.com/python-poetry/poetry/pull/10374">#10374</a>).</li> </ul> <h3>Fixed</h3> <ul> <li>Fix an issue where re-locking failed for incomplete multiple-constraints dependencies with explicit sources (<a href="https://redirect.github.com/python-poetry/poetry/pull/10324">#10324</a>).</li> <li>Fix an issue where the <code>--directory</code> option did not work if a plugin, which accesses the poetry instance during its activation, was installed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10352">#10352</a>).</li> <li>Fix an issue where <code>poetry env activate -v</code> printed additional information to stdout instead of stderr so that the output could not be used as designed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10353">#10353</a>).</li> <li>Fix an issue where the original error was not printed if building a git dependency failed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10366">#10366</a>).</li> <li>Fix an issue where wheels for the wrong platform were installed in rare cases. (<a href="https://redirect.github.com/python-poetry/poetry/pull/10361">#10361</a>).</li> </ul> <h3>poetry-core (<a href="https://github.com/python-poetry/poetry-core/releases/tag/2.1.3"><code>2.1.3</code></a>)</h3> <ul> <li>Fix an issue where the union of specific inverse or partially inverse markers was not simplified (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/858">#858</a>).</li> <li>Fix an issue where optional dependencies defined in the <code>project</code> section were treated as non-optional when a source was defined for them in the <code>tool.poetry</code> section (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/857">#857</a>).</li> <li>Fix an issue where markers with <code>===</code> were not parsed correctly (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/860">#860</a>).</li> <li>Fix an issue where local versions with upper case letters caused an error (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/859">#859</a>).</li> <li>Fix an issue where <code>extra</code> markers with a value starting with "in" were not validated correctly (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/862">#862</a>).</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python-poetry/poetry/blob/main/CHANGELOG.md">poetry's changelog</a>.</em></p> <blockquote> <h2>[2.1.3] - 2025-05-04</h2> <h3>Changed</h3> <ul> <li>Require <code>importlib-metadata<8.7</code> for Python 3.9 because of a breaking change in importlib-metadata 8.7 (<a href="https://redirect.github.com/python-poetry/poetry/pull/10374">#10374</a>).</li> </ul> <h3>Fixed</h3> <ul> <li>Fix an issue where re-locking failed for incomplete multiple-constraints dependencies with explicit sources (<a href="https://redirect.github.com/python-poetry/poetry/pull/10324">#10324</a>).</li> <li>Fix an issue where the <code>--directory</code> option did not work if a plugin, which accesses the poetry instance during its activation, was installed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10352">#10352</a>).</li> <li>Fix an issue where <code>poetry env activate -v</code> printed additional information to stdout instead of stderr so that the output could not be used as designed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10353">#10353</a>).</li> <li>Fix an issue where the original error was not printed if building a git dependency failed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10366">#10366</a>).</li> <li>Fix an issue where wheels for the wrong platform were installed in rare cases. (<a href="https://redirect.github.com/python-poetry/poetry/pull/10361">#10361</a>).</li> </ul> <h3>poetry-core (<a href="https://github.com/python-poetry/poetry-core/releases/tag/2.1.3"><code>2.1.3</code></a>)</h3> <ul> <li>Fix an issue where the union of specific inverse or partially inverse markers was not simplified (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/858">#858</a>).</li> <li>Fix an issue where optional dependencies defined in the <code>project</code> section were treated as non-optional when a source was defined for them in the <code>tool.poetry</code> section (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/857">#857</a>).</li> <li>Fix an issue where markers with <code>===</code> were not parsed correctly (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/860">#860</a>).</li> <li>Fix an issue where local versions with upper case letters caused an error (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/859">#859</a>).</li> <li>Fix an issue where <code>extra</code> markers with a value starting with "in" were not validated correctly (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/862">#862</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python-poetry/poetry/commit/84eeadc21f92a04d46ea769e3e39d7c902e44136"><code>84eeadc</code></a> release: bump version to 2.1.3</li> <li><a href="https://github.com/python-poetry/poetry/commit/aa08f25982fa8851b8e5e773978a2cb790212353"><code>aa08f25</code></a> chore: update dependencies (especially poetry-core) ... (<a href="https://redirect.github.com/python-poetry/poetry/issues/10374">#10374</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/865e928a000a1715ded7be294939b4469f3c5a85"><code>865e928</code></a> add useful information to error message (<a href="https://redirect.github.com/python-poetry/poetry/issues/10367">#10367</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/b0a982ea2afca288c17fb4c06febcbf50dc27420"><code>b0a982e</code></a> Rename ruff ruleset: <code>TCH</code> → <code>TC</code> (<a href="https://redirect.github.com/python-poetry/poetry/issues/10373">#10373</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/14221f593c35a26c9d993a105199d7a10cd28800"><code>14221f5</code></a> fix <code>get_supported_tags</code> in cases where the target env has a different platfo...</li> <li><a href="https://github.com/python-poetry/poetry/commit/b739891f60000d368057ce4cd3d4c2e712a2d53c"><code>b739891</code></a> fix error handling for git dependencies (<a href="https://redirect.github.com/python-poetry/poetry/issues/10366">#10366</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/13e78bab899941fec2aa093cc0c3b1c7f2f31979"><code>13e78ba</code></a> docs: update path dependency specification example (<a href="https://redirect.github.com/python-poetry/poetry/issues/10171">#10171</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/b51680113e57e102ed18e5f8cc938834544a8bc4"><code>b516801</code></a> outputs 'env activate' verbose message on stderr (<a href="https://redirect.github.com/python-poetry/poetry/issues/10353">#10353</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/8e5426df948cf7dc3be2721fb858c8424ea5f5d7"><code>8e5426d</code></a> Poetry documentation proofread (<a href="https://redirect.github.com/python-poetry/poetry/issues/10354">#10354</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/7cb58f6a299ff6f08b6786d5f205b9cf331ad51a"><code>7cb58f6</code></a> chore: update dependencies and actions (<a href="https://redirect.github.com/python-poetry/poetry/issues/10362">#10362</a>)</li> <li>Additional commits viewable in <a href="https://github.com/python-poetry/poetry/compare/2.1.2...2.1.3">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will 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 version` will 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 </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps the ci group in /.github/workflows with 2 updates: [pip](https://github.com/pypa/pip) and [poetry](https://github.com/python-poetry/poetry). Updates `pip` from 25.1 to 25.1.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/pip/blob/main/NEWS.rst">pip's changelog</a>.</em></p> <blockquote> <h1>25.1.1 (2025-05-02)</h1> <h2>Bug Fixes</h2> <ul> <li>Fix <code>req.source_dir</code> AssertionError when using the legacy resolver. (<code>[#13353](pypa/pip#13353) <https://github.com/pypa/pip/issues/13353></code>_)</li> <li>Fix crash on Python 3.9.6 and lower when pip failed to compile a Python module during installation. (<code>[#13364](pypa/pip#13364) <https://github.com/pypa/pip/issues/13364></code>_)</li> <li>Names in dependency group includes are now normalized before lookup, which fixes incorrect <code>Dependency group '...' not found</code> errors. (<code>[#13372](pypa/pip#13372) <https://github.com/pypa/pip/issues/13372></code>_)</li> </ul> <h2>Vendored Libraries</h2> <ul> <li>Fix issues with using tomllib from the stdlib if available, rather than tomli</li> <li>Upgrade dependency-groups to 1.3.1</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/pip/commit/01857ef79f59a98db592bacb6e7b48f354528c80"><code>01857ef</code></a> Bump for release</li> <li><a href="https://github.com/pypa/pip/commit/08d8bb91e2c7734f98f828e28215aba15784012a"><code>08d8bb9</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13374">#13374</a> from pfmoore/fixups</li> <li><a href="https://github.com/pypa/pip/commit/2bff84e495a3d31008088c168c5ab9bfa633a172"><code>2bff84e</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13363">#13363</a> from sbidoul/fix-source_dir-assert</li> <li><a href="https://github.com/pypa/pip/commit/644e71d6e339035836dce0adbf59f881b334e186"><code>644e71d</code></a> News file fixups</li> <li><a href="https://github.com/pypa/pip/commit/426856f496a8f84f1e36fded83b3d5e74968a786"><code>426856f</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13364">#13364</a> from ichard26/bugfix/python39</li> <li><a href="https://github.com/pypa/pip/commit/b7e3aead483baf42ca00e29b9758338ad19c130b"><code>b7e3aea</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13356">#13356</a> from eli-schwartz/tomllib</li> <li><a href="https://github.com/pypa/pip/commit/8c678fe85daaf11d8dd6a43b7835088513944655"><code>8c678fe</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13373">#13373</a> from sirosen/update-vendored-dependency-groups</li> <li><a href="https://github.com/pypa/pip/commit/7d006399c0d0d38e55d56a6b0732e959bf75f796"><code>7d00639</code></a> Update newsfiles for dependency-groups patch</li> <li><a href="https://github.com/pypa/pip/commit/6d28bbf065a292f67d3d66d8f47fba15a1a2d512"><code>6d28bbf</code></a> Update version of <code>dependency-groups</code> to v1.3.1</li> <li><a href="https://github.com/pypa/pip/commit/94bd66d615d5f9036c53196f4f2acb7c71d5010c"><code>94bd66d</code></a> Revert StreamWrapper removal to restore Python 3.9.{0,6} compat</li> <li>Additional commits viewable in <a href="https://github.com/pypa/pip/compare/25.1...25.1.1">compare view</a></li> </ul> </details> <br /> Updates `poetry` from 2.1.2 to 2.1.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/python-poetry/poetry/releases">poetry's releases</a>.</em></p> <blockquote> <h2>2.1.3</h2> <h3>Changed</h3> <ul> <li>Require <code>importlib-metadata<8.7</code> for Python 3.9 because of a breaking change in importlib-metadata 8.7 (<a href="https://redirect.github.com/python-poetry/poetry/pull/10374">#10374</a>).</li> </ul> <h3>Fixed</h3> <ul> <li>Fix an issue where re-locking failed for incomplete multiple-constraints dependencies with explicit sources (<a href="https://redirect.github.com/python-poetry/poetry/pull/10324">#10324</a>).</li> <li>Fix an issue where the <code>--directory</code> option did not work if a plugin, which accesses the poetry instance during its activation, was installed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10352">#10352</a>).</li> <li>Fix an issue where <code>poetry env activate -v</code> printed additional information to stdout instead of stderr so that the output could not be used as designed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10353">#10353</a>).</li> <li>Fix an issue where the original error was not printed if building a git dependency failed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10366">#10366</a>).</li> <li>Fix an issue where wheels for the wrong platform were installed in rare cases. (<a href="https://redirect.github.com/python-poetry/poetry/pull/10361">#10361</a>).</li> </ul> <h3>poetry-core (<a href="https://github.com/python-poetry/poetry-core/releases/tag/2.1.3"><code>2.1.3</code></a>)</h3> <ul> <li>Fix an issue where the union of specific inverse or partially inverse markers was not simplified (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/858">#858</a>).</li> <li>Fix an issue where optional dependencies defined in the <code>project</code> section were treated as non-optional when a source was defined for them in the <code>tool.poetry</code> section (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/857">#857</a>).</li> <li>Fix an issue where markers with <code>===</code> were not parsed correctly (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/860">#860</a>).</li> <li>Fix an issue where local versions with upper case letters caused an error (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/859">#859</a>).</li> <li>Fix an issue where <code>extra</code> markers with a value starting with "in" were not validated correctly (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/862">#862</a>).</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python-poetry/poetry/blob/main/CHANGELOG.md">poetry's changelog</a>.</em></p> <blockquote> <h2>[2.1.3] - 2025-05-04</h2> <h3>Changed</h3> <ul> <li>Require <code>importlib-metadata<8.7</code> for Python 3.9 because of a breaking change in importlib-metadata 8.7 (<a href="https://redirect.github.com/python-poetry/poetry/pull/10374">#10374</a>).</li> </ul> <h3>Fixed</h3> <ul> <li>Fix an issue where re-locking failed for incomplete multiple-constraints dependencies with explicit sources (<a href="https://redirect.github.com/python-poetry/poetry/pull/10324">#10324</a>).</li> <li>Fix an issue where the <code>--directory</code> option did not work if a plugin, which accesses the poetry instance during its activation, was installed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10352">#10352</a>).</li> <li>Fix an issue where <code>poetry env activate -v</code> printed additional information to stdout instead of stderr so that the output could not be used as designed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10353">#10353</a>).</li> <li>Fix an issue where the original error was not printed if building a git dependency failed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10366">#10366</a>).</li> <li>Fix an issue where wheels for the wrong platform were installed in rare cases. (<a href="https://redirect.github.com/python-poetry/poetry/pull/10361">#10361</a>).</li> </ul> <h3>poetry-core (<a href="https://github.com/python-poetry/poetry-core/releases/tag/2.1.3"><code>2.1.3</code></a>)</h3> <ul> <li>Fix an issue where the union of specific inverse or partially inverse markers was not simplified (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/858">#858</a>).</li> <li>Fix an issue where optional dependencies defined in the <code>project</code> section were treated as non-optional when a source was defined for them in the <code>tool.poetry</code> section (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/857">#857</a>).</li> <li>Fix an issue where markers with <code>===</code> were not parsed correctly (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/860">#860</a>).</li> <li>Fix an issue where local versions with upper case letters caused an error (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/859">#859</a>).</li> <li>Fix an issue where <code>extra</code> markers with a value starting with "in" were not validated correctly (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/862">#862</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python-poetry/poetry/commit/84eeadc21f92a04d46ea769e3e39d7c902e44136"><code>84eeadc</code></a> release: bump version to 2.1.3</li> <li><a href="https://github.com/python-poetry/poetry/commit/aa08f25982fa8851b8e5e773978a2cb790212353"><code>aa08f25</code></a> chore: update dependencies (especially poetry-core) ... (<a href="https://redirect.github.com/python-poetry/poetry/issues/10374">#10374</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/865e928a000a1715ded7be294939b4469f3c5a85"><code>865e928</code></a> add useful information to error message (<a href="https://redirect.github.com/python-poetry/poetry/issues/10367">#10367</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/b0a982ea2afca288c17fb4c06febcbf50dc27420"><code>b0a982e</code></a> Rename ruff ruleset: <code>TCH</code> → <code>TC</code> (<a href="https://redirect.github.com/python-poetry/poetry/issues/10373">#10373</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/14221f593c35a26c9d993a105199d7a10cd28800"><code>14221f5</code></a> fix <code>get_supported_tags</code> in cases where the target env has a different platfo...</li> <li><a href="https://github.com/python-poetry/poetry/commit/b739891f60000d368057ce4cd3d4c2e712a2d53c"><code>b739891</code></a> fix error handling for git dependencies (<a href="https://redirect.github.com/python-poetry/poetry/issues/10366">#10366</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/13e78bab899941fec2aa093cc0c3b1c7f2f31979"><code>13e78ba</code></a> docs: update path dependency specification example (<a href="https://redirect.github.com/python-poetry/poetry/issues/10171">#10171</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/b51680113e57e102ed18e5f8cc938834544a8bc4"><code>b516801</code></a> outputs 'env activate' verbose message on stderr (<a href="https://redirect.github.com/python-poetry/poetry/issues/10353">#10353</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/8e5426df948cf7dc3be2721fb858c8424ea5f5d7"><code>8e5426d</code></a> Poetry documentation proofread (<a href="https://redirect.github.com/python-poetry/poetry/issues/10354">#10354</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/7cb58f6a299ff6f08b6786d5f205b9cf331ad51a"><code>7cb58f6</code></a> chore: update dependencies and actions (<a href="https://redirect.github.com/python-poetry/poetry/issues/10362">#10362</a>)</li> <li>Additional commits viewable in <a href="https://github.com/python-poetry/poetry/compare/2.1.2...2.1.3">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will 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 version` will 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 </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…k/test/generated-code (#4823) Bumps [pip](https://github.com/pypa/pip) from 25.1 to 25.1.1. <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/pip/blob/main/NEWS.rst">pip's changelog</a>.</em></p> <blockquote> <h1>25.1.1 (2025-05-02)</h1> <h2>Bug Fixes</h2> <ul> <li>Fix <code>req.source_dir</code> AssertionError when using the legacy resolver. (<code>[#13353](pypa/pip#13353) <https://github.com/pypa/pip/issues/13353></code>_)</li> <li>Fix crash on Python 3.9.6 and lower when pip failed to compile a Python module during installation. (<code>[#13364](pypa/pip#13364) <https://github.com/pypa/pip/issues/13364></code>_)</li> <li>Names in dependency group includes are now normalized before lookup, which fixes incorrect <code>Dependency group '...' not found</code> errors. (<code>[#13372](pypa/pip#13372) <https://github.com/pypa/pip/issues/13372></code>_)</li> </ul> <h2>Vendored Libraries</h2> <ul> <li>Fix issues with using tomllib from the stdlib if available, rather than tomli</li> <li>Upgrade dependency-groups to 1.3.1</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/pip/commit/01857ef79f59a98db592bacb6e7b48f354528c80"><code>01857ef</code></a> Bump for release</li> <li><a href="https://github.com/pypa/pip/commit/08d8bb91e2c7734f98f828e28215aba15784012a"><code>08d8bb9</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13374">#13374</a> from pfmoore/fixups</li> <li><a href="https://github.com/pypa/pip/commit/2bff84e495a3d31008088c168c5ab9bfa633a172"><code>2bff84e</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13363">#13363</a> from sbidoul/fix-source_dir-assert</li> <li><a href="https://github.com/pypa/pip/commit/644e71d6e339035836dce0adbf59f881b334e186"><code>644e71d</code></a> News file fixups</li> <li><a href="https://github.com/pypa/pip/commit/426856f496a8f84f1e36fded83b3d5e74968a786"><code>426856f</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13364">#13364</a> from ichard26/bugfix/python39</li> <li><a href="https://github.com/pypa/pip/commit/b7e3aead483baf42ca00e29b9758338ad19c130b"><code>b7e3aea</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13356">#13356</a> from eli-schwartz/tomllib</li> <li><a href="https://github.com/pypa/pip/commit/8c678fe85daaf11d8dd6a43b7835088513944655"><code>8c678fe</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13373">#13373</a> from sirosen/update-vendored-dependency-groups</li> <li><a href="https://github.com/pypa/pip/commit/7d006399c0d0d38e55d56a6b0732e959bf75f796"><code>7d00639</code></a> Update newsfiles for dependency-groups patch</li> <li><a href="https://github.com/pypa/pip/commit/6d28bbf065a292f67d3d66d8f47fba15a1a2d512"><code>6d28bbf</code></a> Update version of <code>dependency-groups</code> to v1.3.1</li> <li><a href="https://github.com/pypa/pip/commit/94bd66d615d5f9036c53196f4f2acb7c71d5010c"><code>94bd66d</code></a> Revert StreamWrapper removal to restore Python 3.9.{0,6} compat</li> <li>Additional commits viewable in <a href="https://github.com/pypa/pip/compare/25.1...25.1.1">compare view</a></li> </ul> </details> <br /> [](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>
Bumps the runtime-dependencies group with 4 updates: [pip](https://github.com/pypa/pip), [uv](https://github.com/astral-sh/uv), [azure-core](https://github.com/Azure/azure-sdk-for-python) and [boto3](https://github.com/boto/boto3). Updates `pip` from 25.1 to 25.1.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/pip/blob/main/NEWS.rst">pip's changelog</a>.</em></p> <blockquote> <h1>25.1.1 (2025-05-02)</h1> <h2>Bug Fixes</h2> <ul> <li>Fix <code>req.source_dir</code> AssertionError when using the legacy resolver. (<code>[#13353](pypa/pip#13353) <https://github.com/pypa/pip/issues/13353></code>_)</li> <li>Fix crash on Python 3.9.6 and lower when pip failed to compile a Python module during installation. (<code>[#13364](pypa/pip#13364) <https://github.com/pypa/pip/issues/13364></code>_)</li> <li>Names in dependency group includes are now normalized before lookup, which fixes incorrect <code>Dependency group '...' not found</code> errors. (<code>[#13372](pypa/pip#13372) <https://github.com/pypa/pip/issues/13372></code>_)</li> </ul> <h2>Vendored Libraries</h2> <ul> <li>Fix issues with using tomllib from the stdlib if available, rather than tomli</li> <li>Upgrade dependency-groups to 1.3.1</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/pip/commit/01857ef79f59a98db592bacb6e7b48f354528c80"><code>01857ef</code></a> Bump for release</li> <li><a href="https://github.com/pypa/pip/commit/08d8bb91e2c7734f98f828e28215aba15784012a"><code>08d8bb9</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13374">#13374</a> from pfmoore/fixups</li> <li><a href="https://github.com/pypa/pip/commit/2bff84e495a3d31008088c168c5ab9bfa633a172"><code>2bff84e</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13363">#13363</a> from sbidoul/fix-source_dir-assert</li> <li><a href="https://github.com/pypa/pip/commit/644e71d6e339035836dce0adbf59f881b334e186"><code>644e71d</code></a> News file fixups</li> <li><a href="https://github.com/pypa/pip/commit/426856f496a8f84f1e36fded83b3d5e74968a786"><code>426856f</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13364">#13364</a> from ichard26/bugfix/python39</li> <li><a href="https://github.com/pypa/pip/commit/b7e3aead483baf42ca00e29b9758338ad19c130b"><code>b7e3aea</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13356">#13356</a> from eli-schwartz/tomllib</li> <li><a href="https://github.com/pypa/pip/commit/8c678fe85daaf11d8dd6a43b7835088513944655"><code>8c678fe</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13373">#13373</a> from sirosen/update-vendored-dependency-groups</li> <li><a href="https://github.com/pypa/pip/commit/7d006399c0d0d38e55d56a6b0732e959bf75f796"><code>7d00639</code></a> Update newsfiles for dependency-groups patch</li> <li><a href="https://github.com/pypa/pip/commit/6d28bbf065a292f67d3d66d8f47fba15a1a2d512"><code>6d28bbf</code></a> Update version of <code>dependency-groups</code> to v1.3.1</li> <li><a href="https://github.com/pypa/pip/commit/94bd66d615d5f9036c53196f4f2acb7c71d5010c"><code>94bd66d</code></a> Revert StreamWrapper removal to restore Python 3.9.{0,6} compat</li> <li>Additional commits viewable in <a href="https://github.com/pypa/pip/compare/25.1...25.1.1">compare view</a></li> </ul> </details> <br /> Updates `uv` from 0.7.0 to 0.7.2 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/uv/releases">uv's releases</a>.</em></p> <blockquote> <h2>0.7.2</h2> <h2>Release Notes</h2> <h3>Enhancements</h3> <ul> <li>Improve trace log for retryable errors (<a href="https://redirect.github.com/astral-sh/uv/pull/13228">#13228</a>)</li> <li>Use "error" instead of "warning" for self-update message (<a href="https://redirect.github.com/astral-sh/uv/pull/13229">#13229</a>)</li> <li>Error when <code>uv version</code> is used with project-specific flags but no project is found (<a href="https://redirect.github.com/astral-sh/uv/pull/13203">#13203</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>Fix incorrect virtual environment invalidation for pre-release Python versions (<a href="https://redirect.github.com/astral-sh/uv/pull/13234">#13234</a>)</li> <li>Fix patching of <code>clang</code> in managed Python sysconfig (<a href="https://redirect.github.com/astral-sh/uv/pull/13237">#13237</a>)</li> <li>Respect <code>--project</code> in <code>uv version</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/13230">#13230</a>)</li> </ul> <h2>Install uv 0.7.2</h2> <h3>Install prebuilt binaries via shell script</h3> <pre lang="sh"><code>curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/uv/releases/download/0.7.2/uv-installer.sh | sh </code></pre> <h3>Install prebuilt binaries via powershell script</h3> <pre lang="sh"><code>powershell -ExecutionPolicy Bypass -c "irm https://github.com/astral-sh/uv/releases/download/0.7.2/uv-installer.ps1 | iex" </code></pre> <h2>Download uv 0.7.2</h2> <table> <thead> <tr> <th>File</th> <th>Platform</th> <th>Checksum</th> </tr> </thead> <tbody> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-aarch64-apple-darwin.tar.gz">uv-aarch64-apple-darwin.tar.gz</a></td> <td>Apple Silicon macOS</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-aarch64-apple-darwin.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-x86_64-apple-darwin.tar.gz">uv-x86_64-apple-darwin.tar.gz</a></td> <td>Intel macOS</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-x86_64-apple-darwin.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-aarch64-pc-windows-msvc.zip">uv-aarch64-pc-windows-msvc.zip</a></td> <td>ARM64 Windows</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-aarch64-pc-windows-msvc.zip.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-i686-pc-windows-msvc.zip">uv-i686-pc-windows-msvc.zip</a></td> <td>x86 Windows</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-i686-pc-windows-msvc.zip.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-x86_64-pc-windows-msvc.zip">uv-x86_64-pc-windows-msvc.zip</a></td> <td>x64 Windows</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-x86_64-pc-windows-msvc.zip.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-aarch64-unknown-linux-gnu.tar.gz">uv-aarch64-unknown-linux-gnu.tar.gz</a></td> <td>ARM64 Linux</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-aarch64-unknown-linux-gnu.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-i686-unknown-linux-gnu.tar.gz">uv-i686-unknown-linux-gnu.tar.gz</a></td> <td>x86 Linux</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-i686-unknown-linux-gnu.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-powerpc64-unknown-linux-gnu.tar.gz">uv-powerpc64-unknown-linux-gnu.tar.gz</a></td> <td>PPC64 Linux</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-powerpc64-unknown-linux-gnu.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-powerpc64le-unknown-linux-gnu.tar.gz">uv-powerpc64le-unknown-linux-gnu.tar.gz</a></td> <td>PPC64LE Linux</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-powerpc64le-unknown-linux-gnu.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-s390x-unknown-linux-gnu.tar.gz">uv-s390x-unknown-linux-gnu.tar.gz</a></td> <td>S390x Linux</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-s390x-unknown-linux-gnu.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-x86_64-unknown-linux-gnu.tar.gz">uv-x86_64-unknown-linux-gnu.tar.gz</a></td> <td>x64 Linux</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-x86_64-unknown-linux-gnu.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-armv7-unknown-linux-gnueabihf.tar.gz">uv-armv7-unknown-linux-gnueabihf.tar.gz</a></td> <td>ARMv7 Linux</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-armv7-unknown-linux-gnueabihf.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-aarch64-unknown-linux-musl.tar.gz">uv-aarch64-unknown-linux-musl.tar.gz</a></td> <td>ARM64 MUSL Linux</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-aarch64-unknown-linux-musl.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-i686-unknown-linux-musl.tar.gz">uv-i686-unknown-linux-musl.tar.gz</a></td> <td>x86 MUSL Linux</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-i686-unknown-linux-musl.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-x86_64-unknown-linux-musl.tar.gz">uv-x86_64-unknown-linux-musl.tar.gz</a></td> <td>x64 MUSL Linux</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-x86_64-unknown-linux-musl.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-arm-unknown-linux-musleabihf.tar.gz">uv-arm-unknown-linux-musleabihf.tar.gz</a></td> <td>ARMv6 MUSL Linux (Hardfloat)</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-arm-unknown-linux-musleabihf.tar.gz.sha256">checksum</a></td> </tr> <tr> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-armv7-unknown-linux-musleabihf.tar.gz">uv-armv7-unknown-linux-musleabihf.tar.gz</a></td> <td>ARMv7 MUSL Linux</td> <td><a href="https://github.com/astral-sh/uv/releases/download/0.7.2/uv-armv7-unknown-linux-musleabihf.tar.gz.sha256">checksum</a></td> </tr> </tbody> </table> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/astral-sh/uv/blob/main/CHANGELOG.md">uv's changelog</a>.</em></p> <blockquote> <h2>0.7.2</h2> <h3>Enhancements</h3> <ul> <li>Improve trace log for retryable errors (<a href="https://redirect.github.com/astral-sh/uv/pull/13228">#13228</a>)</li> <li>Use "error" instead of "warning" for self-update message (<a href="https://redirect.github.com/astral-sh/uv/pull/13229">#13229</a>)</li> <li>Error when <code>uv version</code> is used with project-specific flags but no project is found (<a href="https://redirect.github.com/astral-sh/uv/pull/13203">#13203</a>)</li> </ul> <h3>Bug fixes</h3> <ul> <li>Fix incorrect virtual environment invalidation for pre-release Python versions (<a href="https://redirect.github.com/astral-sh/uv/pull/13234">#13234</a>)</li> <li>Fix patching of <code>clang</code> in managed Python sysconfig (<a href="https://redirect.github.com/astral-sh/uv/pull/13237">#13237</a>)</li> <li>Respect <code>--project</code> in <code>uv version</code> (<a href="https://redirect.github.com/astral-sh/uv/pull/13230">#13230</a>)</li> </ul> <h2>0.7.1</h2> <h3>Enhancement</h3> <ul> <li>Add support for BLAKE2b-256 (<a href="https://redirect.github.com/astral-sh/uv/pull/13204">#13204</a>)</li> </ul> <h3>Bugfix</h3> <ul> <li>Revert fix handling of authentication when encountering redirects (<a href="https://redirect.github.com/astral-sh/uv/pull/13215">#13215</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/astral-sh/uv/commit/481d05d8dfb8627612dec72840a02c17b926b263"><code>481d05d</code></a> Bump version to 0.7.2 (<a href="https://redirect.github.com/astral-sh/uv/issues/13240">#13240</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/f91b4aeb66f167411164ff44ffc23843ea32a5e5"><code>f91b4ae</code></a> hard error <code>uv version</code> for more cli flags (<a href="https://redirect.github.com/astral-sh/uv/issues/13203">#13203</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/671d6091274dea2c41165efc202b8c212fd7cc7c"><code>671d609</code></a> Improve trace log for retryable errors (<a href="https://redirect.github.com/astral-sh/uv/issues/13228">#13228</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/d8e472cfa8e24c2d13f03644995d08dc28193985"><code>d8e472c</code></a> Use "error" instead of "warning" for self-update message (<a href="https://redirect.github.com/astral-sh/uv/issues/13229">#13229</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/a9ab39ad6fbfb7b4925cc360fa4786f0ec9128bb"><code>a9ab39a</code></a> Fix patching of <code>clang</code> in managed Python sysconfig (<a href="https://redirect.github.com/astral-sh/uv/issues/13237">#13237</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/9ea0fdcee94470e748283b2df8b18c521b775d76"><code>9ea0fdc</code></a> Respect <code>--project</code> in <code>uv version</code> (<a href="https://redirect.github.com/astral-sh/uv/issues/13230">#13230</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/3a87b6374a075ccb0f8139f271677e172365e9bd"><code>3a87b63</code></a> Fix incorrect venv invalidation for pre-release Python versions (<a href="https://redirect.github.com/astral-sh/uv/issues/13234">#13234</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/9558a86e6534caa852fcf2f4ed56e9eef67ff97c"><code>9558a86</code></a> Fix PR links in CHANGELOG (<a href="https://redirect.github.com/astral-sh/uv/issues/13220">#13220</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/dfec52bf5195ac6bf66332b555f2d167114e42e5"><code>dfec52b</code></a> Fix changelog indentation level (<a href="https://redirect.github.com/astral-sh/uv/issues/13219">#13219</a>)</li> <li><a href="https://github.com/astral-sh/uv/commit/90f46f89a58de8d8af8c48e944aad6675692a1aa"><code>90f46f8</code></a> Bump version to 0.7.1 (<a href="https://redirect.github.com/astral-sh/uv/issues/13218">#13218</a>)</li> <li>Additional commits viewable in <a href="https://github.com/astral-sh/uv/compare/0.7.0...0.7.2">compare view</a></li> </ul> </details> <br /> Updates `azure-core` from 1.33.0 to 1.34.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/Azure/azure-sdk-for-python/releases">azure-core's releases</a>.</em></p> <blockquote> <h2>azure-core_1.34.0</h2> <h2>1.34.0 (2025-05-01)</h2> <h3>Features Added</h3> <ul> <li>Added a <code>set_span_error_status</code> method to the <code>OpenTelemetryTracer</code> class. This method allows users to set the status of a span to <code>ERROR</code> after it has been created. <a href="https://redirect.github.com/Azure/azure-sdk-for-python/issues/40703">#40703</a></li> </ul> <h3>Other Changes</h3> <ul> <li>Python 3.8 is no longer supported. Please use Python version 3.9 or later.</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/Azure/azure-sdk-for-python/commit/3487e954eba952d659563ebcce0987ebc5748d2e"><code>3487e95</code></a> [Core] Prep changelog for release (<a href="https://redirect.github.com/Azure/azure-sdk-for-python/issues/40846">#40846</a>)</li> <li><a href="https://github.com/Azure/azure-sdk-for-python/commit/ec469b21b8c79e569e8434c4861e5834e8b1caf1"><code>ec469b2</code></a> [Core] Drop Python 3.8 support (<a href="https://redirect.github.com/Azure/azure-sdk-for-python/issues/40831">#40831</a>)</li> <li><a href="https://github.com/Azure/azure-sdk-for-python/commit/8e7f1a8e3dc30577b904f513d269e910ea6d93ca"><code>8e7f1a8</code></a> [Core] Add method for setting span status (<a href="https://redirect.github.com/Azure/azure-sdk-for-python/issues/40703">#40703</a>)</li> <li><a href="https://github.com/Azure/azure-sdk-for-python/commit/edb98b856d852f1b74c640964d30ae2d50bde100"><code>edb98b8</code></a> remove deprecated data plane pkgs from main (<a href="https://redirect.github.com/Azure/azure-sdk-for-python/issues/40712">#40712</a>)</li> <li><a href="https://github.com/Azure/azure-sdk-for-python/commit/858389b512866f45e15f3fe08dba2943b7db75fc"><code>858389b</code></a> [Corehttp] Implement tracing capabilities (<a href="https://redirect.github.com/Azure/azure-sdk-for-python/issues/39172">#39172</a>)</li> <li><a href="https://github.com/Azure/azure-sdk-for-python/commit/32f976bd15ebb68abf88f203d6718b6f0fb62e16"><code>32f976b</code></a> remove deprecated mgmt pkgs from main (<a href="https://redirect.github.com/Azure/azure-sdk-for-python/issues/40666">#40666</a>)</li> <li><a href="https://github.com/Azure/azure-sdk-for-python/commit/f7384ce265eef199a6b5c812ba6d7a687ca50274"><code>f7384ce</code></a> [Corehttp] Increment version in changelog (<a href="https://redirect.github.com/Azure/azure-sdk-for-python/issues/40560">#40560</a>)</li> <li><a href="https://github.com/Azure/azure-sdk-for-python/commit/2f9e93bd61967cb4237f9d1360cf23ae10d71b09"><code>2f9e93b</code></a> [Core] Add native tracing live tests (<a href="https://redirect.github.com/Azure/azure-sdk-for-python/issues/39945">#39945</a>)</li> <li><a href="https://github.com/Azure/azure-sdk-for-python/commit/77ae5d0e97eb5d38c12c78797df25aae52d4e177"><code>77ae5d0</code></a> Fix azure-core pylint issues (<a href="https://redirect.github.com/Azure/azure-sdk-for-python/issues/39992">#39992</a>)</li> <li><a href="https://github.com/Azure/azure-sdk-for-python/commit/6b6a8c09b6c437a5e99348c61581e20c558d5d5b"><code>6b6a8c0</code></a> Remove Python 3.8 + Standardize on <code>azsdk-pool</code> on affected templates (<a href="https://redirect.github.com/Azure/azure-sdk-for-python/issues/40499">#40499</a>)</li> <li>Additional commits viewable in <a href="https://github.com/Azure/azure-sdk-for-python/compare/azure-core_1.33.0...azure-core_1.34.0">compare view</a></li> </ul> </details> <br /> Updates `boto3` from 1.38.3 to 1.38.8 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/boto/boto3/commit/34cbb246e4f9639f8df48fb49737ffb35b8f6cbb"><code>34cbb24</code></a> Merge branch 'release-1.38.8'</li> <li><a href="https://github.com/boto/boto3/commit/4756482b0a73dc1312da74893e1183e8241b93b4"><code>4756482</code></a> Bumping version to 1.38.8</li> <li><a href="https://github.com/boto/boto3/commit/fb57777a01ef91328415c713a44591ed636090db"><code>fb57777</code></a> Add changelog entries from botocore</li> <li><a href="https://github.com/boto/boto3/commit/c09e338bf3f3e74ed8210c051102ffc3ed77759f"><code>c09e338</code></a> Merge branch 'release-1.38.7'</li> <li><a href="https://github.com/boto/boto3/commit/adcf36f1385f6f45301a32dc969dcc0b363fc49e"><code>adcf36f</code></a> Merge branch 'release-1.38.7' into develop</li> <li><a href="https://github.com/boto/boto3/commit/12c89439882b956f297da6fc2a52968ff251c8ae"><code>12c8943</code></a> Bumping version to 1.38.7</li> <li><a href="https://github.com/boto/boto3/commit/41d1c72534afc9819bc254ef6d25ad1ccb5647e3"><code>41d1c72</code></a> Add changelog entries from botocore</li> <li><a href="https://github.com/boto/boto3/commit/98de1f1d0062a8e9684ccff5629a0913abab4bc9"><code>98de1f1</code></a> Merge branch 'release-1.38.6'</li> <li><a href="https://github.com/boto/boto3/commit/116d908849deaac92be41921d372d5cd5d2db2f2"><code>116d908</code></a> Merge branch 'release-1.38.6' into develop</li> <li><a href="https://github.com/boto/boto3/commit/daa52f1778b57086ed4ac9ae42abf8a2f6fdd87b"><code>daa52f1</code></a> Bumping version to 1.38.6</li> <li>Additional commits viewable in <a href="https://github.com/boto/boto3/compare/1.38.3...1.38.8">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will 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 version` will 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 </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps the ci group in /.github/workflows with 2 updates: [pip](https://github.com/pypa/pip) and [poetry](https://github.com/python-poetry/poetry). Updates `pip` from 25.1 to 25.1.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/pip/blob/main/NEWS.rst">pip's changelog</a>.</em></p> <blockquote> <h1>25.1.1 (2025-05-02)</h1> <h2>Bug Fixes</h2> <ul> <li>Fix <code>req.source_dir</code> AssertionError when using the legacy resolver. (<code>[#13353](pypa/pip#13353) <https://github.com/pypa/pip/issues/13353></code>_)</li> <li>Fix crash on Python 3.9.6 and lower when pip failed to compile a Python module during installation. (<code>[#13364](pypa/pip#13364) <https://github.com/pypa/pip/issues/13364></code>_)</li> <li>Names in dependency group includes are now normalized before lookup, which fixes incorrect <code>Dependency group '...' not found</code> errors. (<code>[#13372](pypa/pip#13372) <https://github.com/pypa/pip/issues/13372></code>_)</li> </ul> <h2>Vendored Libraries</h2> <ul> <li>Fix issues with using tomllib from the stdlib if available, rather than tomli</li> <li>Upgrade dependency-groups to 1.3.1</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/pip/commit/01857ef79f59a98db592bacb6e7b48f354528c80"><code>01857ef</code></a> Bump for release</li> <li><a href="https://github.com/pypa/pip/commit/08d8bb91e2c7734f98f828e28215aba15784012a"><code>08d8bb9</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13374">#13374</a> from pfmoore/fixups</li> <li><a href="https://github.com/pypa/pip/commit/2bff84e495a3d31008088c168c5ab9bfa633a172"><code>2bff84e</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13363">#13363</a> from sbidoul/fix-source_dir-assert</li> <li><a href="https://github.com/pypa/pip/commit/644e71d6e339035836dce0adbf59f881b334e186"><code>644e71d</code></a> News file fixups</li> <li><a href="https://github.com/pypa/pip/commit/426856f496a8f84f1e36fded83b3d5e74968a786"><code>426856f</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13364">#13364</a> from ichard26/bugfix/python39</li> <li><a href="https://github.com/pypa/pip/commit/b7e3aead483baf42ca00e29b9758338ad19c130b"><code>b7e3aea</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13356">#13356</a> from eli-schwartz/tomllib</li> <li><a href="https://github.com/pypa/pip/commit/8c678fe85daaf11d8dd6a43b7835088513944655"><code>8c678fe</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13373">#13373</a> from sirosen/update-vendored-dependency-groups</li> <li><a href="https://github.com/pypa/pip/commit/7d006399c0d0d38e55d56a6b0732e959bf75f796"><code>7d00639</code></a> Update newsfiles for dependency-groups patch</li> <li><a href="https://github.com/pypa/pip/commit/6d28bbf065a292f67d3d66d8f47fba15a1a2d512"><code>6d28bbf</code></a> Update version of <code>dependency-groups</code> to v1.3.1</li> <li><a href="https://github.com/pypa/pip/commit/94bd66d615d5f9036c53196f4f2acb7c71d5010c"><code>94bd66d</code></a> Revert StreamWrapper removal to restore Python 3.9.{0,6} compat</li> <li>Additional commits viewable in <a href="https://github.com/pypa/pip/compare/25.1...25.1.1">compare view</a></li> </ul> </details> <br /> Updates `poetry` from 2.1.2 to 2.1.3 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/python-poetry/poetry/releases">poetry's releases</a>.</em></p> <blockquote> <h2>2.1.3</h2> <h3>Changed</h3> <ul> <li>Require <code>importlib-metadata<8.7</code> for Python 3.9 because of a breaking change in importlib-metadata 8.7 (<a href="https://redirect.github.com/python-poetry/poetry/pull/10374">#10374</a>).</li> </ul> <h3>Fixed</h3> <ul> <li>Fix an issue where re-locking failed for incomplete multiple-constraints dependencies with explicit sources (<a href="https://redirect.github.com/python-poetry/poetry/pull/10324">#10324</a>).</li> <li>Fix an issue where the <code>--directory</code> option did not work if a plugin, which accesses the poetry instance during its activation, was installed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10352">#10352</a>).</li> <li>Fix an issue where <code>poetry env activate -v</code> printed additional information to stdout instead of stderr so that the output could not be used as designed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10353">#10353</a>).</li> <li>Fix an issue where the original error was not printed if building a git dependency failed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10366">#10366</a>).</li> <li>Fix an issue where wheels for the wrong platform were installed in rare cases. (<a href="https://redirect.github.com/python-poetry/poetry/pull/10361">#10361</a>).</li> </ul> <h3>poetry-core (<a href="https://github.com/python-poetry/poetry-core/releases/tag/2.1.3"><code>2.1.3</code></a>)</h3> <ul> <li>Fix an issue where the union of specific inverse or partially inverse markers was not simplified (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/858">#858</a>).</li> <li>Fix an issue where optional dependencies defined in the <code>project</code> section were treated as non-optional when a source was defined for them in the <code>tool.poetry</code> section (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/857">#857</a>).</li> <li>Fix an issue where markers with <code>===</code> were not parsed correctly (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/860">#860</a>).</li> <li>Fix an issue where local versions with upper case letters caused an error (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/859">#859</a>).</li> <li>Fix an issue where <code>extra</code> markers with a value starting with "in" were not validated correctly (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/862">#862</a>).</li> </ul> </blockquote> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python-poetry/poetry/blob/main/CHANGELOG.md">poetry's changelog</a>.</em></p> <blockquote> <h2>[2.1.3] - 2025-05-04</h2> <h3>Changed</h3> <ul> <li>Require <code>importlib-metadata<8.7</code> for Python 3.9 because of a breaking change in importlib-metadata 8.7 (<a href="https://redirect.github.com/python-poetry/poetry/pull/10374">#10374</a>).</li> </ul> <h3>Fixed</h3> <ul> <li>Fix an issue where re-locking failed for incomplete multiple-constraints dependencies with explicit sources (<a href="https://redirect.github.com/python-poetry/poetry/pull/10324">#10324</a>).</li> <li>Fix an issue where the <code>--directory</code> option did not work if a plugin, which accesses the poetry instance during its activation, was installed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10352">#10352</a>).</li> <li>Fix an issue where <code>poetry env activate -v</code> printed additional information to stdout instead of stderr so that the output could not be used as designed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10353">#10353</a>).</li> <li>Fix an issue where the original error was not printed if building a git dependency failed (<a href="https://redirect.github.com/python-poetry/poetry/pull/10366">#10366</a>).</li> <li>Fix an issue where wheels for the wrong platform were installed in rare cases. (<a href="https://redirect.github.com/python-poetry/poetry/pull/10361">#10361</a>).</li> </ul> <h3>poetry-core (<a href="https://github.com/python-poetry/poetry-core/releases/tag/2.1.3"><code>2.1.3</code></a>)</h3> <ul> <li>Fix an issue where the union of specific inverse or partially inverse markers was not simplified (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/858">#858</a>).</li> <li>Fix an issue where optional dependencies defined in the <code>project</code> section were treated as non-optional when a source was defined for them in the <code>tool.poetry</code> section (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/857">#857</a>).</li> <li>Fix an issue where markers with <code>===</code> were not parsed correctly (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/860">#860</a>).</li> <li>Fix an issue where local versions with upper case letters caused an error (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/859">#859</a>).</li> <li>Fix an issue where <code>extra</code> markers with a value starting with "in" were not validated correctly (<a href="https://redirect.github.com/python-poetry/poetry-core/pull/862">#862</a>).</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python-poetry/poetry/commit/84eeadc21f92a04d46ea769e3e39d7c902e44136"><code>84eeadc</code></a> release: bump version to 2.1.3</li> <li><a href="https://github.com/python-poetry/poetry/commit/aa08f25982fa8851b8e5e773978a2cb790212353"><code>aa08f25</code></a> chore: update dependencies (especially poetry-core) ... (<a href="https://redirect.github.com/python-poetry/poetry/issues/10374">#10374</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/865e928a000a1715ded7be294939b4469f3c5a85"><code>865e928</code></a> add useful information to error message (<a href="https://redirect.github.com/python-poetry/poetry/issues/10367">#10367</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/b0a982ea2afca288c17fb4c06febcbf50dc27420"><code>b0a982e</code></a> Rename ruff ruleset: <code>TCH</code> → <code>TC</code> (<a href="https://redirect.github.com/python-poetry/poetry/issues/10373">#10373</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/14221f593c35a26c9d993a105199d7a10cd28800"><code>14221f5</code></a> fix <code>get_supported_tags</code> in cases where the target env has a different platfo...</li> <li><a href="https://github.com/python-poetry/poetry/commit/b739891f60000d368057ce4cd3d4c2e712a2d53c"><code>b739891</code></a> fix error handling for git dependencies (<a href="https://redirect.github.com/python-poetry/poetry/issues/10366">#10366</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/13e78bab899941fec2aa093cc0c3b1c7f2f31979"><code>13e78ba</code></a> docs: update path dependency specification example (<a href="https://redirect.github.com/python-poetry/poetry/issues/10171">#10171</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/b51680113e57e102ed18e5f8cc938834544a8bc4"><code>b516801</code></a> outputs 'env activate' verbose message on stderr (<a href="https://redirect.github.com/python-poetry/poetry/issues/10353">#10353</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/8e5426df948cf7dc3be2721fb858c8424ea5f5d7"><code>8e5426d</code></a> Poetry documentation proofread (<a href="https://redirect.github.com/python-poetry/poetry/issues/10354">#10354</a>)</li> <li><a href="https://github.com/python-poetry/poetry/commit/7cb58f6a299ff6f08b6786d5f205b9cf331ad51a"><code>7cb58f6</code></a> chore: update dependencies and actions (<a href="https://redirect.github.com/python-poetry/poetry/issues/10362">#10362</a>)</li> <li>Additional commits viewable in <a href="https://github.com/python-poetry/poetry/compare/2.1.2...2.1.3">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will 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 version` will 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 </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps the dependabot group with 7 updates in the / directory: | Package | From | To | | --- | --- | --- | | [click](https://github.com/pallets/click) | `8.1.5` | `8.2.0` | | [importlib-metadata](https://github.com/python/importlib_metadata) | `8.6.1` | `8.7.0` | | [pip](https://github.com/pypa/pip) | `25.0.1` | `25.1.1` | | [setuptools](https://github.com/pypa/setuptools) | `79.0.0` | `80.7.1` | | [certifi](https://github.com/certifi/python-certifi) | `2025.1.31` | `2025.4.26` | | [pluggy](https://github.com/pytest-dev/pluggy) | `1.5.0` | `1.6.0` | | [termcolor](https://github.com/termcolor/termcolor) | `3.0.1` | `3.1.0` | Updates `click` from 8.1.5 to 8.2.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/pallets/click/releases">click's releases</a>.</em></p> <blockquote> <h2>8.2.0</h2> <p>This is the Click 8.2.0 feature release. A feature release may include new features, remove previously deprecated code, add new deprecation, or introduce potentially breaking changes.</p> <p>We encourage everyone to upgrade. You can read more about our <a href="https://palletsprojects.com/versions">Version Support Policy</a> on our website.</p> <p>PyPI: <a href="https://pypi.org/project/click/8.2.0/">https://pypi.org/project/click/8.2.0/</a> Changes: <a href="https://click.palletsprojects.com/en/stable/changes/">https://click.palletsprojects.com/en/stable/changes/</a> Milestone <a href="https://github.com/pallets/click/milestone/15">https://github.com/pallets/click/milestone/15</a></p> <ul> <li>Drop support for Python 3.7, 3.8,and 3.9. <a href="https://redirect.github.com/pallets/click/issues/2588">#2588</a>, <a href="https://redirect.github.com/pallets/click/issues/2893">#2893</a></li> <li>Use modern packaging metadata with <code>pyproject.toml</code> instead of <code>setup.cfg</code>. <a href="https://redirect.github.com/pallets/click/issues/2438">#2438</a></li> <li>Use <code>flit_core</code> instead of <code>setuptools</code> as build backend. <a href="https://redirect.github.com/pallets/click/issues/2543">#2543</a></li> <li>Deprecate the <code>__version__</code> attribute. Use feature detection, or <code>importlib.metadata.version("click")</code>, instead. <a href="https://redirect.github.com/pallets/click/issues/2598">#2598</a></li> <li><code>BaseCommand</code> is deprecated. <code>Command</code> is the base class for all commands. <a href="https://redirect.github.com/pallets/click/issues/2589">#2589</a></li> <li><code>MultiCommand</code> is deprecated. <code>Group</code> is the base class for all group commands. <a href="https://redirect.github.com/pallets/click/issues/2590">#2590</a></li> <li>The current parser and related classes and methods, are deprecated. <a href="https://redirect.github.com/pallets/click/issues/2205">#2205</a> <ul> <li><code>OptionParser</code> and the <code>parser</code> module, which is a modified copy of <code>optparse</code> in the standard library.</li> <li><code>Context.protected_args</code> is unneeded. <code>Context.args</code> contains any remaining arguments while parsing.</li> <li><code>Parameter.add_to_parser</code> (on both <code>Argument</code> and <code>Option</code>) is unneeded. Parsing works directly without building a separate parser.</li> <li><code>split_arg_string</code> is moved from <code>parser</code> to <code>shell_completion</code>.</li> </ul> </li> <li>Enable deferred evaluation of annotations with <code>from __future__ import annotations</code>. <a href="https://redirect.github.com/pallets/click/issues/2270">#2270</a></li> <li>When generating a command's name from a decorated function's name, the suffixes <code>_command</code>, <code>_cmd</code>, <code>_group</code>, and <code>_grp</code> are removed. <a href="https://redirect.github.com/pallets/click/issues/2322">#2322</a></li> <li>Show the <code>types.ParamType.name</code> for <code>types.Choice</code> options within <code>--help</code> message if <code>show_choices=False</code> is specified. <a href="https://redirect.github.com/pallets/click/issues/2356">#2356</a></li> <li>Do not display default values in prompts when <code>Option.show_default</code> is <code>False</code>. <a href="https://redirect.github.com/pallets/click/issues/2509">#2509</a></li> <li>Add <code>get_help_extra</code> method on <code>Option</code> to fetch the generated extra items used in <code>get_help_record</code> to render help text. <a href="https://redirect.github.com/pallets/click/issues/2516">#2516</a> <a href="https://redirect.github.com/pallets/click/issues/2517">#2517</a></li> <li>Keep stdout and stderr streams independent in <code>CliRunner</code>. Always collect stderr output and never raise an exception. Add a new output stream to simulate what the user sees in its terminal. Removes the <code>mix_stderr</code> parameter in <code>CliRunner</code>. <a href="https://redirect.github.com/pallets/click/issues/2522">#2522</a> <a href="https://redirect.github.com/pallets/click/issues/2523">#2523</a></li> <li><code>Option.show_envvar</code> now also shows environment variable in error messages. <a href="https://redirect.github.com/pallets/click/issues/2695">#2695</a> <a href="https://redirect.github.com/pallets/click/issues/2696">#2696</a></li> <li><code>Context.close</code> will be called on exit. This results in all <code>Context.call_on_close</code> callbacks and context managers added via <code>Context.with_resource</code> to be closed on exit as well. <a href="https://redirect.github.com/pallets/click/issues/2680">#2680</a></li> <li>Add <code>ProgressBar(hidden: bool)</code> to allow hiding the progressbar. <a href="https://redirect.github.com/pallets/click/issues/2609">#2609</a></li> <li>A <code>UserWarning</code> will be shown when multiple parameters attempt to use the same name. <a href="https://redirect.github.com/pallets/click/issues/2396">#2396</a></li> <li>When using <code>Option.envvar</code> with <code>Option.flag_value</code>, the <code>flag_value</code> will always be used instead of the value of the environment variable. <a href="https://redirect.github.com/pallets/click/issues/2746">#2746</a> <a href="https://redirect.github.com/pallets/click/issues/2788">#2788</a></li> <li>Add <code>Choice.get_invalid_choice_message</code> method for customizing the invalid choice message. <a href="https://redirect.github.com/pallets/click/issues/2621">#2621</a> <a href="https://redirect.github.com/pallets/click/issues/2622">#2622</a></li> <li>If help is shown because <code>no_args_is_help</code> is enabled (defaults to <code>True</code> for groups, <code>False</code> for commands), the exit code is 2 instead of 0. <a href="https://redirect.github.com/pallets/click/issues/1489">#1489</a> <a href="https://redirect.github.com/pallets/click/issues/1489">#1489</a></li> <li>Contexts created during shell completion are closed properly, fixing a <code>ResourceWarning</code> when using <code>click.File</code>. <a href="https://redirect.github.com/pallets/click/issues/2644">#2644</a> <a href="https://redirect.github.com/pallets/click/issues/2800">#2800</a> <a href="https://redirect.github.com/pallets/click/issues/2767">#2767</a></li> <li><code>click.edit(filename)</code> now supports passing an iterable of filenames in case the editor supports editing multiple files at once. Its return type is now also typed: <code>AnyStr</code> if <code>text</code> is passed, otherwise <code>None</code>. <a href="https://redirect.github.com/pallets/click/issues/2067">#2067</a> <a href="https://redirect.github.com/pallets/click/issues/2068">#2068</a></li> <li>Specialized typing of <code>progressbar(length=...)</code> as <code>ProgressBar[int]</code>. <a href="https://redirect.github.com/pallets/click/issues/2630">#2630</a></li> <li>Improve <code>echo_via_pager</code> behaviour in face of errors. <a href="https://redirect.github.com/pallets/click/issues/2674">#2674</a> <ul> <li>Terminate the pager in case a generator passed to <code>echo_via_pager</code> raises an exception.</li> <li>Ensure to always close the pipe to the pager process and wait for it to terminate.</li> <li><code>echo_via_pager</code> will not ignore <code>KeyboardInterrupt</code> anymore. This allows the user to search for future output of the generator when using less and then aborting the program using ctrl-c.</li> </ul> </li> <li><code>deprecated: bool | str</code> can now be used on options and arguments. This previously was only available for <code>Command</code>. The message can now also be customised by using a <code>str</code> instead of a <code>bool</code>. <a href="https://redirect.github.com/pallets/click/issues/2263">#2263</a> <a href="https://redirect.github.com/pallets/click/issues/2271">#2271</a> <ul> <li><code>Command.deprecated</code> formatting in <code>--help</code> changed from <code>(Deprecated) help</code> to <code>help (DEPRECATED)</code>.</li> <li>Parameters cannot be required nor prompted or an error is raised.</li> <li>A warning will be printed when something deprecated is used.</li> </ul> </li> <li>Add a <code>catch_exceptions</code> parameter to <code>CliRunner</code>. If <code>catch_exceptions</code> is not passed to <code>CliRunner.invoke</code>, the value from <code>CliRunner</code> is used. <a href="https://redirect.github.com/pallets/click/issues/2817">#2817</a> <a href="https://redirect.github.com/pallets/click/issues/2818">#2818</a></li> <li><code>Option.flag_value</code> will no longer have a default value set based on <code>Option.default</code> if <code>Option.is_flag</code> is <code>False</code>. This results in <code>Option.default</code> not needing to implement <code>__bool__</code>. <a href="https://redirect.github.com/pallets/click/issues/2829">#2829</a></li> <li>Incorrect <code>click.edit</code> typing has been corrected. <a href="https://redirect.github.com/pallets/click/issues/2804">#2804</a></li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pallets/click/blob/main/CHANGES.rst">click's changelog</a>.</em></p> <blockquote> <h2>Version 8.2.0</h2> <p>Released 2025-05-10</p> <ul> <li> <p>Drop support for Python 3.7, 3.8, and 3.9. :pr:<code>2588</code> :pr:<code>2893</code></p> </li> <li> <p>Use modern packaging metadata with <code>pyproject.toml</code> instead of <code>setup.cfg</code>. :pr:<code>2438</code></p> </li> <li> <p>Use <code>flit_core</code> instead of <code>setuptools</code> as build backend. :pr:<code>2543</code></p> </li> <li> <p>Deprecate the <code>__version__</code> attribute. Use feature detection, or <code>importlib.metadata.version("click")</code>, instead. :issue:<code>2598</code></p> </li> <li> <p><code>BaseCommand</code> is deprecated. <code>Command</code> is the base class for all commands. :issue:<code>2589</code></p> </li> <li> <p><code>MultiCommand</code> is deprecated. <code>Group</code> is the base class for all group commands. :issue:<code>2590</code></p> </li> <li> <p>The current parser and related classes and methods, are deprecated. :issue:<code>2205</code></p> <ul> <li><code>OptionParser</code> and the <code>parser</code> module, which is a modified copy of <code>optparse</code> in the standard library.</li> <li><code>Context.protected_args</code> is unneeded. <code>Context.args</code> contains any remaining arguments while parsing.</li> <li><code>Parameter.add_to_parser</code> (on both <code>Argument</code> and <code>Option</code>) is unneeded. Parsing works directly without building a separate parser.</li> <li><code>split_arg_string</code> is moved from <code>parser</code> to <code>shell_completion</code>.</li> </ul> </li> <li> <p>Enable deferred evaluation of annotations with <code>from __future__ import annotations</code>. :pr:<code>2270</code></p> </li> <li> <p>When generating a command's name from a decorated function's name, the suffixes <code>_command</code>, <code>_cmd</code>, <code>_group</code>, and <code>_grp</code> are removed. :issue:<code>2322</code></p> </li> <li> <p>Show the <code>types.ParamType.name</code> for <code>types.Choice</code> options within <code>--help</code> message if <code>show_choices=False</code> is specified. :issue:<code>2356</code></p> </li> <li> <p>Do not display default values in prompts when <code>Option.show_default</code> is <code>False</code>. :pr:<code>2509</code></p> </li> <li> <p>Add <code>get_help_extra</code> method on <code>Option</code> to fetch the generated extra items used in <code>get_help_record</code> to render help text. :issue:<code>2516</code> :pr:<code>2517</code></p> </li> <li> <p>Keep stdout and stderr streams independent in <code>CliRunner</code>. Always collect stderr output and never raise an exception. Add a new output stream to simulate what the user sees in its terminal. Removes the <code>mix_stderr</code> parameter in <code>CliRunner</code>. :issue:<code>2522</code> :pr:<code>2523</code></p> </li> <li> <p><code>Option.show_envvar</code> now also shows environment variable in error messages. :issue:<code>2695</code> :pr:<code>2696</code></p> </li> <li> <p><code>Context.close</code> will be called on exit. This results in all <code>Context.call_on_close</code> callbacks and context managers added via <code>Context.with_resource</code> to be closed on exit as well. :pr:<code>2680</code></p> </li> <li> <p>Add <code>ProgressBar(hidden: bool)</code> to allow hiding the progressbar. :issue:<code>2609</code></p> </li> <li> <p>A <code>UserWarning</code> will be shown when multiple parameters attempt to use the</p> </li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pallets/click/commit/219206a18666624072fdbb803901e5eb7ce575a1"><code>219206a</code></a> release version 8.2.0</li> <li><a href="https://github.com/pallets/click/commit/498f8826040fd6644d0f410c4d574df09c35d4b2"><code>498f882</code></a> drop end of life python versions (<a href="https://redirect.github.com/pallets/click/issues/2893">#2893</a>)</li> <li><a href="https://github.com/pallets/click/commit/ba770cbc96f522e9dab1bf54dc642dfa5b053956"><code>ba770cb</code></a> drop end of life python versions</li> <li><a href="https://github.com/pallets/click/commit/f14b75063fb36b9208b13a920326926363616b39"><code>f14b750</code></a> update dev dependencies</li> <li><a href="https://github.com/pallets/click/commit/9982faee85f2715a9cde03639f8c0382561c09ce"><code>9982fae</code></a> Update CHANGES.rst</li> <li><a href="https://github.com/pallets/click/commit/7318f5f11bd59de62e4f7f73585d19300deb32b2"><code>7318f5f</code></a> Update CHANGES.rst</li> <li><a href="https://github.com/pallets/click/commit/b7c0ab471c339488766d9413349947b2a7b21543"><code>b7c0ab4</code></a> Merge <code>stable</code> into <code>main</code>; Release 8.2.0 (<a href="https://redirect.github.com/pallets/click/issues/2873">#2873</a>)</li> <li><a href="https://github.com/pallets/click/commit/c9b96fe08de11f37d49e49f2de08a303bd0426ef"><code>c9b96fe</code></a> Merge branch 'main' into main</li> <li><a href="https://github.com/pallets/click/commit/ab21233fc8f9e29d4194956d643af8bc180c7153"><code>ab21233</code></a> Rewrite second half of options docs (<a href="https://redirect.github.com/pallets/click/issues/2848">#2848</a>)</li> <li><a href="https://github.com/pallets/click/commit/8c89a1436232b08e0f09cf0583ac5bc83c0ca4da"><code>8c89a14</code></a> Merge branch 'main' into options_docs_2</li> <li>Additional commits viewable in <a href="https://github.com/pallets/click/compare/8.1.5...8.2.0">compare view</a></li> </ul> </details> <br /> Updates `importlib-metadata` from 8.6.1 to 8.7.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/python/importlib_metadata/blob/main/NEWS.rst">importlib-metadata's changelog</a>.</em></p> <blockquote> <h1>v8.7.0</h1> <h2>Features</h2> <ul> <li><code>.metadata()</code> (and <code>Distribution.metadata</code>) can now return <code>None</code> if the metadata directory exists but not metadata file is present. (<a href="https://redirect.github.com/python/importlib_metadata/issues/493">#493</a>)</li> </ul> <h2>Bugfixes</h2> <ul> <li>Raise consistent ValueError for invalid EntryPoint.value (<a href="https://redirect.github.com/python/importlib_metadata/issues/518">#518</a>)</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/python/importlib_metadata/commit/708dff4f1ab89bdd126e3e8c56098d04282c5809"><code>708dff4</code></a> Finalize</li> <li><a href="https://github.com/python/importlib_metadata/commit/b3065f03cc3395f46ed575e612e213f92a064879"><code>b3065f0</code></a> Merge pull request <a href="https://redirect.github.com/python/importlib_metadata/issues/519">#519</a> from python/bugfix/493-metadata-missing</li> <li><a href="https://github.com/python/importlib_metadata/commit/e4351c226765f53a40316fa6aab50488aee8a90f"><code>e4351c2</code></a> Add a new test capturing the new expectation.</li> <li><a href="https://github.com/python/importlib_metadata/commit/5a657051f7386de6f0560c200d78e941be2c8058"><code>5a65705</code></a> Refactor the casting into a wrapper for brevity and to document its purpose.</li> <li><a href="https://github.com/python/importlib_metadata/commit/0830c39b8a23e48024365120c0e97a6f7c36c5ec"><code>0830c39</code></a> Add news fragment.</li> <li><a href="https://github.com/python/importlib_metadata/commit/22bb567692d8e7bd216f864a9d8dee1272ee8674"><code>22bb567</code></a> Fix type errors where metadata could be None.</li> <li><a href="https://github.com/python/importlib_metadata/commit/57f31d77e18fef11dfadfd44775f253971c36920"><code>57f31d7</code></a> Allow metadata to return None when there is no metadata present.</li> <li><a href="https://github.com/python/importlib_metadata/commit/b9c4be4253250ad604610db66204e5fa70fa2455"><code>b9c4be4</code></a> Merge pull request <a href="https://redirect.github.com/python/importlib_metadata/issues/518">#518</a> from python/bugfix/488-bad-ep-value</li> <li><a href="https://github.com/python/importlib_metadata/commit/9f8af013635833cf3ac348413c9ac63b37caa3dd"><code>9f8af01</code></a> Prefer a cached property, as the property is likely to be retrieved at least ...</li> <li><a href="https://github.com/python/importlib_metadata/commit/f179e28888b2c6caf12baaf5449ff1cd82513dfe"><code>f179e28</code></a> Also raise ValueError on construction if the value is invalid.</li> <li>Additional commits viewable in <a href="https://github.com/python/importlib_metadata/compare/v8.6.1...v8.7.0">compare view</a></li> </ul> </details> <br /> Updates `pip` from 25.0.1 to 25.1.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/pip/blob/main/NEWS.rst">pip's changelog</a>.</em></p> <blockquote> <h1>25.1.1 (2025-05-02)</h1> <h2>Bug Fixes</h2> <ul> <li>Fix <code>req.source_dir</code> AssertionError when using the legacy resolver. (<code>[#13353](pypa/pip#13353) <https://github.com/pypa/pip/issues/13353></code>_)</li> <li>Fix crash on Python 3.9.6 and lower when pip failed to compile a Python module during installation. (<code>[#13364](pypa/pip#13364) <https://github.com/pypa/pip/issues/13364></code>_)</li> <li>Names in dependency group includes are now normalized before lookup, which fixes incorrect <code>Dependency group '...' not found</code> errors. (<code>[#13372](pypa/pip#13372) <https://github.com/pypa/pip/issues/13372></code>_)</li> </ul> <h2>Vendored Libraries</h2> <ul> <li>Fix issues with using tomllib from the stdlib if available, rather than tomli</li> <li>Upgrade dependency-groups to 1.3.1</li> </ul> <h1>25.1 (2025-04-26)</h1> <h2>Deprecations and Removals</h2> <ul> <li>Drop support for Python 3.8. (<code>[#12989](pypa/pip#12989) <https://github.com/pypa/pip/issues/12989></code>_)</li> <li>On python 3.14+, the <code>pkg_resources</code> metadata backend cannot be used anymore. (<code>[#13010](pypa/pip#13010) <https://github.com/pypa/pip/issues/13010></code>_)</li> <li>Hide <code>--no-python-version-warning</code> from CLI help and documentation as it's useless since Python 2 support was removed. Despite being formerly slated for removal, the flag will remain as a no-op to avoid breakage. (<code>[#13303](pypa/pip#13303) <https://github.com/pypa/pip/issues/13303></code>_)</li> <li>A warning is emitted when the deprecated <code>pkg_resources</code> library is used to inspect and discover installed packages. This warning should only be visible to users who set an undocumented environment variable to disable the default <code>importlib.metadata</code> backend. (<code>[#13318](pypa/pip#13318) <https://github.com/pypa/pip/issues/13318></code>_)</li> <li>Deprecate the legacy <code>setup.py bdist_wheel</code> mechanism. To silence the warning, and future-proof their setup, users should enable <code>--use-pep517</code> or add a <code>pyproject.toml</code> file to the projects they control. (<code>[#13319](pypa/pip#13319) <https://github.com/pypa/pip/issues/13319></code>_)</li> </ul> <h2>Features</h2> <ul> <li>Suggest checking "pip config debug" in case of an InvalidProxyURL error. (<code>[#12649](pypa/pip#12649) <https://github.com/pypa/pip/issues/12649></code>_)</li> <li>Using <code>--debug</code> also enables verbose logging. (<code>[#12710](pypa/pip#12710) <https://github.com/pypa/pip/issues/12710></code>_)</li> <li>Display a transient progress bar during package installation. (<code>[#12712](pypa/pip#12712) <https://github.com/pypa/pip/issues/12712></code>_)</li> <li>Minor performance improvement when installing packages with a large number of dependencies by increasing the requirement string cache size. (<code>[#12873](pypa/pip#12873) <https://github.com/pypa/pip/issues/12873></code>_)</li> <li>Add a <code>--group</code> option which allows installation from :pep:<code>735</code> Dependency Groups. <code>--group</code> accepts arguments of the form <code>group</code> or <code>path:group</code>, where the default path is <code>pyproject.toml</code>, and installs</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/pip/commit/01857ef79f59a98db592bacb6e7b48f354528c80"><code>01857ef</code></a> Bump for release</li> <li><a href="https://github.com/pypa/pip/commit/08d8bb91e2c7734f98f828e28215aba15784012a"><code>08d8bb9</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13374">#13374</a> from pfmoore/fixups</li> <li><a href="https://github.com/pypa/pip/commit/2bff84e495a3d31008088c168c5ab9bfa633a172"><code>2bff84e</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13363">#13363</a> from sbidoul/fix-source_dir-assert</li> <li><a href="https://github.com/pypa/pip/commit/644e71d6e339035836dce0adbf59f881b334e186"><code>644e71d</code></a> News file fixups</li> <li><a href="https://github.com/pypa/pip/commit/426856f496a8f84f1e36fded83b3d5e74968a786"><code>426856f</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13364">#13364</a> from ichard26/bugfix/python39</li> <li><a href="https://github.com/pypa/pip/commit/b7e3aead483baf42ca00e29b9758338ad19c130b"><code>b7e3aea</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13356">#13356</a> from eli-schwartz/tomllib</li> <li><a href="https://github.com/pypa/pip/commit/8c678fe85daaf11d8dd6a43b7835088513944655"><code>8c678fe</code></a> Merge pull request <a href="https://redirect.github.com/pypa/pip/issues/13373">#13373</a> from sirosen/update-vendored-dependency-groups</li> <li><a href="https://github.com/pypa/pip/commit/7d006399c0d0d38e55d56a6b0732e959bf75f796"><code>7d00639</code></a> Update newsfiles for dependency-groups patch</li> <li><a href="https://github.com/pypa/pip/commit/6d28bbf065a292f67d3d66d8f47fba15a1a2d512"><code>6d28bbf</code></a> Update version of <code>dependency-groups</code> to v1.3.1</li> <li><a href="https://github.com/pypa/pip/commit/94bd66d615d5f9036c53196f4f2acb7c71d5010c"><code>94bd66d</code></a> Revert StreamWrapper removal to restore Python 3.9.{0,6} compat</li> <li>Additional commits viewable in <a href="https://github.com/pypa/pip/compare/25.0.1...25.1.1">compare view</a></li> </ul> </details> <br /> Updates `setuptools` from 79.0.0 to 80.7.1 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pypa/setuptools/blob/main/NEWS.rst">setuptools's changelog</a>.</em></p> <blockquote> <h1>v80.7.1</h1> <h2>Bugfixes</h2> <ul> <li>Only attempt to fetch eggs for unsatisfied requirements. (<a href="https://redirect.github.com/pypa/setuptools/issues/4998">#4998</a>)</li> <li>In installer, when discovering egg dists, let metadata discovery search each egg. (<a href="https://redirect.github.com/pypa/setuptools/issues/4998">#4998</a>)</li> </ul> <h1>v80.7.0</h1> <h2>Features</h2> <ul> <li>Removed usage of pkg_resources from installer. Set an official deadline on the installer deprecation to 2025-10-31. (<a href="https://redirect.github.com/pypa/setuptools/issues/4997">#4997</a>)</li> </ul> <h2>Misc</h2> <ul> <li><a href="https://redirect.github.com/pypa/setuptools/issues/4996">#4996</a></li> </ul> <h1>v80.6.0</h1> <h2>Features</h2> <ul> <li>Added a build dependency on coherent.licensed to inject the declared license text at build time. (<a href="https://redirect.github.com/pypa/setuptools/issues/4981">#4981</a>)</li> </ul> <h2>Misc</h2> <ul> <li><a href="https://redirect.github.com/pypa/setuptools/issues/4995">#4995</a></li> </ul> <h1>v80.5.0</h1> <h2>Features</h2> <ul> <li>Replaced more references to pkg_resources with importlib equivalents. (<a href="https://redirect.github.com/pypa/setuptools/issues/3085">#3085</a>)</li> </ul> <p>Misc</p> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pypa/setuptools/commit/12ca0186ba7d9bf387d65400bb05205d0bcf9e56"><code>12ca018</code></a> Bump version: 80.7.0 → 80.7.1</li> <li><a href="https://github.com/pypa/setuptools/commit/31f8cac5faa7837e15a6716744034dff52ebcb8c"><code>31f8cac</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4999">#4999</a> from pypa/bugfix/4998-directory-not-empty</li> <li><a href="https://github.com/pypa/setuptools/commit/e6f9ee9411566b276e52e828016b9d27007228bc"><code>e6f9ee9</code></a> In installer, when discovering egg dists, let metadata discovery search each ...</li> <li><a href="https://github.com/pypa/setuptools/commit/76d2923db3e60261e7e9f26a37287b27ad3933a1"><code>76d2923</code></a> Only attempt to fetch eggs for unsatisfied requirements.</li> <li><a href="https://github.com/pypa/setuptools/commit/486081e9eff38c6ed19aa24eab8200d9bba4cdce"><code>486081e</code></a> Bump version: 80.6.0 → 80.7.0</li> <li><a href="https://github.com/pypa/setuptools/commit/f2748d1c1c5046814d929cb270724c2b35ee6020"><code>f2748d1</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4997">#4997</a> from pypa/feature/remove-more-pkg_resources</li> <li><a href="https://github.com/pypa/setuptools/commit/1089223a382ca11ba70fcd9f1081ca22cd9997dc"><code>1089223</code></a> Merge pull request <a href="https://redirect.github.com/pypa/setuptools/issues/4996">#4996</a> from abravalheri/cleanup-distutils</li> <li><a href="https://github.com/pypa/setuptools/commit/00c16df484fa3ec67223037846eff4a280dccb80"><code>00c16df</code></a> Bump version: 80.5.0 → 80.6.0</li> <li><a href="https://github.com/pypa/setuptools/commit/89d3aef7fa7ff5e68cd5c2c29bc986bbd4afa782"><code>89d3aef</code></a> Add news fragment.</li> <li><a href="https://github.com/pypa/setuptools/commit/b74789e2aa3227e85d61b40708959b35d7f666cc"><code>b74789e</code></a> Merge <a href="https://github.com/jaraco/skeleton">https://github.com/jaraco/skeleton</a></li> <li>Additional commits viewable in <a href="https://github.com/pypa/setuptools/compare/v79.0.0...v80.7.1">compare view</a></li> </ul> </details> <br /> Updates `certifi` from 2025.1.31 to 2025.4.26 <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/certifi/python-certifi/commit/275c9eb55733a464589c15fb4566fddd4598e5b2"><code>275c9eb</code></a> 2025.04.26 (<a href="https://redirect.github.com/certifi/python-certifi/issues/347">#347</a>)</li> <li><a href="https://github.com/certifi/python-certifi/commit/37883310b51e56570919cdc2d44becc1c6940559"><code>3788331</code></a> Bump actions/setup-python from 5.4.0 to 5.5.0 (<a href="https://redirect.github.com/certifi/python-certifi/issues/346">#346</a>)</li> <li><a href="https://github.com/certifi/python-certifi/commit/9d1f1b782000baedf57026de5b79e193bcb7ef7b"><code>9d1f1b7</code></a> Bump actions/download-artifact from 4.1.9 to 4.2.1 (<a href="https://redirect.github.com/certifi/python-certifi/issues/344">#344</a>)</li> <li><a href="https://github.com/certifi/python-certifi/commit/96b97a5afe26bc1adef98cb0bfe68e34948a73b6"><code>96b97a5</code></a> Bump actions/upload-artifact from 4.6.1 to 4.6.2 (<a href="https://redirect.github.com/certifi/python-certifi/issues/343">#343</a>)</li> <li><a href="https://github.com/certifi/python-certifi/commit/c054ed3ac3d3505efc929b71cfd87a257bbdb6b3"><code>c054ed3</code></a> Bump peter-evans/create-pull-request from 7.0.7 to 7.0.8 (<a href="https://redirect.github.com/certifi/python-certifi/issues/342">#342</a>)</li> <li><a href="https://github.com/certifi/python-certifi/commit/44547fc77121b12bb276b44b3b2b49cfcbeac06f"><code>44547fc</code></a> Bump actions/download-artifact from 4.1.8 to 4.1.9 (<a href="https://redirect.github.com/certifi/python-certifi/issues/341">#341</a>)</li> <li><a href="https://github.com/certifi/python-certifi/commit/5ea51247afecf1bf4ebfa8f2db3082e89a8bfaed"><code>5ea5124</code></a> Bump actions/upload-artifact from 4.6.0 to 4.6.1 (<a href="https://redirect.github.com/certifi/python-certifi/issues/340">#340</a>)</li> <li><a href="https://github.com/certifi/python-certifi/commit/2f142b7ae0b2d13fee4ba4b9fbd73a9cd5069060"><code>2f142b7</code></a> Bump peter-evans/create-pull-request from 7.0.6 to 7.0.7 (<a href="https://redirect.github.com/certifi/python-certifi/issues/339">#339</a>)</li> <li><a href="https://github.com/certifi/python-certifi/commit/80d2ebdc77d2d005f408f789fe2fb1fe5f4e0265"><code>80d2ebd</code></a> Bump actions/setup-python from 5.3.0 to 5.4.0 (<a href="https://redirect.github.com/certifi/python-certifi/issues/337">#337</a>)</li> <li>See full diff in <a href="https://github.com/certifi/python-certifi/compare/2025.01.31...2025.04.26">compare view</a></li> </ul> </details> <br /> Updates `pluggy` from 1.5.0 to 1.6.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst">pluggy's changelog</a>.</em></p> <blockquote> <h1>pluggy 1.6.0 (2025-05-15)</h1> <h2>Deprecations and Removals</h2> <ul> <li><code>[#556](pytest-dev/pluggy#556) <https://github.com/pytest-dev/pluggy/issues/556></code>_: Python 3.8 is no longer supported.</li> </ul> <h2>Bug Fixes</h2> <ul> <li> <p><code>[#504](pytest-dev/pluggy#504) <https://github.com/pytest-dev/pluggy/issues/504></code>_: Fix a regression in pluggy 1.1.0 where using :func:<code>result.get_result() <pluggy.Result.get_result></code> on the same failed :class:<code>~pluggy.Result</code> causes the exception's traceback to get longer and longer.</p> </li> <li> <p><code>[#544](pytest-dev/pluggy#544) <https://github.com/pytest-dev/pluggy/issues/544></code>_: Correctly pass :class:<code>StopIteration</code> through hook wrappers.</p> <p>Raising a :class:<code>StopIteration</code> in a generator triggers a :class:<code>RuntimeError</code>.</p> <p>If the :class:<code>RuntimeError</code> of a generator has the passed in :class:<code>StopIteration</code> as cause resume with that :class:<code>StopIteration</code> as normal exception instead of failing with the :class:<code>RuntimeError</code>.</p> </li> <li> <p><code>[#573](pytest-dev/pluggy#573) <https://github.com/pytest-dev/pluggy/issues/573></code>_: Fix python 3.14 SyntaxError by rearranging code.</p> </li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/pytest-dev/pluggy/commit/fd08ab5f811a9b2fa9124ae8cbbd393221151e2c"><code>fd08ab5</code></a> Preparing release 1.6.0</li> <li><a href="https://github.com/pytest-dev/pluggy/commit/c240362152d6f354a4056bfd6d28560e226fb70b"><code>c240362</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pluggy/issues/578">#578</a>)</li> <li><a href="https://github.com/pytest-dev/pluggy/commit/0ceb558860b5e228b67adbe8c19a368802e7d324"><code>0ceb558</code></a> Merge pull request <a href="https://redirect.github.com/pytest-dev/pluggy/issues/546">#546</a> from RonnyPfannschmidt/ronny/hookwrapper-wrap-legacy</li> <li><a href="https://github.com/pytest-dev/pluggy/commit/1f4872e8cb2547dacea155a27f94f75e7e8f66ae"><code>1f4872e</code></a> [pre-commit.ci] auto fixes from pre-commit.com hooks</li> <li><a href="https://github.com/pytest-dev/pluggy/commit/4be0c554ea22ca01c7dc30ecccac413a412c1ea7"><code>4be0c55</code></a> add changelog</li> <li><a href="https://github.com/pytest-dev/pluggy/commit/615c6c57c2de62bd9652b59c7a89b3e1fcef08ae"><code>615c6c5</code></a> Merge branch 'main' into hookwrapper-wrap-legacy</li> <li><a href="https://github.com/pytest-dev/pluggy/commit/2acc644f2ead34ac3a154bff2566037480b5c310"><code>2acc644</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pluggy/issues/577">#577</a>)</li> <li><a href="https://github.com/pytest-dev/pluggy/commit/ea5ada08d36d71bbd1f4e0c8472f8f9a4b210a2d"><code>ea5ada0</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pluggy/issues/576">#576</a>)</li> <li><a href="https://github.com/pytest-dev/pluggy/commit/dfd250bcfc3d73f72693d4f14cf48bb737ded9f0"><code>dfd250b</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pluggy/issues/575">#575</a>)</li> <li><a href="https://github.com/pytest-dev/pluggy/commit/1e1862fe458b663728b7523bee2c407455836931"><code>1e1862f</code></a> [pre-commit.ci] pre-commit autoupdate (<a href="https://redirect.github.com/pytest-dev/pluggy/issues/574">#574</a>)</li> <li>Additional commits viewable in <a href="https://github.com/pytest-dev/pluggy/compare/1.5.0...1.6.0">compare view</a></li> </ul> </details> <br /> Updates `termcolor` from 3.0.1 to 3.1.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/termcolor/termcolor/releases">termcolor's releases</a>.</em></p> <blockquote> <h2>Release 3.1.0</h2> <h2>Added</h2> <ul> <li>Add true colour RGB option as input arguments (<a href="https://redirect.github.com/termcolor/termcolor/issues/102">#102</a>) <a href="https://github.com/icyveins7"><code>@icyveins7</code></a></li> <li>Cache system lookups to save invocation time (<a href="https://redirect.github.com/termcolor/termcolor/issues/107">#107</a>) <a href="https://github.com/miketheman"><code>@miketheman</code></a></li> <li>Advertise typing via classifier (<a href="https://redirect.github.com/termcolor/termcolor/issues/104">#104</a>) <a href="https://github.com/miketheman"><code>@miketheman</code></a></li> </ul> <h2>Changed</h2> <ul> <li>Migrate coverage configuration to <code>pyproject.toml</code> (<a href="https://redirect.github.com/termcolor/termcolor/issues/105">#105</a>) <a href="https://github.com/miketheman"><code>@miketheman</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/termcolor/termcolor/commit/1e0ae11ba804f391c1d843c2512b37e8744b0ada"><code>1e0ae11</code></a> Test free-threaded Python 3.13t and 3.14t (<a href="https://redirect.github.com/termcolor/termcolor/issues/111">#111</a>)</li> <li><a href="https://github.com/termcolor/termcolor/commit/9e3f5bb3f4fce51b99da69534fa43686581090a4"><code>9e3f5bb</code></a> Test free-threaded Python 3.13t and 3.14t</li> <li><a href="https://github.com/termcolor/termcolor/commit/52bf7215ce809ab4ba5a11a298c09e6ed44eb00d"><code>52bf721</code></a> Add mutation testing (<a href="https://redirect.github.com/termcolor/termcolor/issues/109">#109</a>)</li> <li><a href="https://github.com/termcolor/termcolor/commit/968cfa566d656755f8cabf863f59e5a0df0f8c2b"><code>968cfa5</code></a> Add tests for cprint kwargs</li> <li><a href="https://github.com/termcolor/termcolor/commit/6048bd599d2f7fe47a2dfe82bbc33af4e64098e9"><code>6048bd5</code></a> Add mutation testing</li> <li><a href="https://github.com/termcolor/termcolor/commit/fd08149187df889da631805ab3651e9265eb8f00"><code>fd08149</code></a> Test code branches (<a href="https://redirect.github.com/termcolor/termcolor/issues/108">#108</a>)</li> <li><a href="https://github.com/termcolor/termcolor/commit/b32a0068c05ff624c322cf311d2b6782494d8f33"><code>b32a006</code></a> Test code branches</li> <li><a href="https://github.com/termcolor/termcolor/commit/60815d2a7eea7b239f2f006bab618f630a323f2e"><code>60815d2</code></a> Cache system lookups to save invocation time (<a href="https://redirect.github.com/termcolor/termcolor/issues/107">#107</a>)</li> <li><a href="https://github.com/termcolor/termcolor/commit/7e1e892a38b86cfc0dbebfa969f39d33295c9b29"><code>7e1e892</code></a> Complete coverage via added tests (<a href="https://redirect.github.com/termcolor/termcolor/issues/106">#106</a>)</li> <li><a href="https://github.com/termcolor/termcolor/commit/e516dd521e870c1a6b06d86974c415aa8c3cfc99"><code>e516dd5</code></a> Cache system lookups to save invocation time</li> <li>Additional commits viewable in <a href="https://github.com/termcolor/termcolor/compare/3.0.1...3.1.0">compare view</a></li> </ul> </details> <br /> 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 <dependency name> major version` will 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 version` will 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 </details> Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: kralka <[email protected]>
Description
Seeing build failures because of this function, my guess is this function was supposed to check whether the stuff needs to be built, but the commit 5b20593
is causing assertion failures, we will need to pin pip till this is resolved.
Expected behavior
The assertion should not be there, a check was fine.
pip version
25.1
Python version
3.9
OS
Al2023
How to Reproduce
Try installing certifi,
I will add more details soon.
Output
Code of Conduct
The text was updated successfully, but these errors were encountered: