Skip to content

Commit 4396c10

Browse files
Bump the dependabot group across 1 directory with 7 updates (#168)
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(&quot;click&quot;)</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(&quot;click&quot;)</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) &lt;https://github.com/pypa/pip/issues/13353&gt;</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) &lt;https://github.com/pypa/pip/issues/13364&gt;</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) &lt;https://github.com/pypa/pip/issues/13372&gt;</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) &lt;https://github.com/pypa/pip/issues/12989&gt;</code>_)</li> <li>On python 3.14+, the <code>pkg_resources</code> metadata backend cannot be used anymore. (<code>[#13010](pypa/pip#13010) &lt;https://github.com/pypa/pip/issues/13010&gt;</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) &lt;https://github.com/pypa/pip/issues/13303&gt;</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) &lt;https://github.com/pypa/pip/issues/13318&gt;</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) &lt;https://github.com/pypa/pip/issues/13319&gt;</code>_)</li> </ul> <h2>Features</h2> <ul> <li>Suggest checking &quot;pip config debug&quot; in case of an InvalidProxyURL error. (<code>[#12649](pypa/pip#12649) &lt;https://github.com/pypa/pip/issues/12649&gt;</code>_)</li> <li>Using <code>--debug</code> also enables verbose logging. (<code>[#12710](pypa/pip#12710) &lt;https://github.com/pypa/pip/issues/12710&gt;</code>_)</li> <li>Display a transient progress bar during package installation. (<code>[#12712](pypa/pip#12712) &lt;https://github.com/pypa/pip/issues/12712&gt;</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) &lt;https://github.com/pypa/pip/issues/12873&gt;</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) &lt;https://github.com/pytest-dev/pluggy/issues/556&gt;</code>_: Python 3.8 is no longer supported.</li> </ul> <h2>Bug Fixes</h2> <ul> <li> <p><code>[#504](pytest-dev/pluggy#504) &lt;https://github.com/pytest-dev/pluggy/issues/504&gt;</code>_: Fix a regression in pluggy 1.1.0 where using :func:<code>result.get_result() &lt;pluggy.Result.get_result&gt;</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) &lt;https://github.com/pytest-dev/pluggy/issues/544&gt;</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) &lt;https://github.com/pytest-dev/pluggy/issues/573&gt;</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]>
1 parent 516bff1 commit 4396c10

File tree

2 files changed

+16
-16
lines changed

2 files changed

+16
-16
lines changed

base-tooling-requirements.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
build==1.2.1 --hash=sha256:526263f4870c26f26c433545579475377b2b7588b6f1eac76a001e873ae3e19d --hash=sha256:75e10f767a433d9a86e50d83f418e83efc18ede923ee5ff7df93b6cb0306c5d4
2-
click==8.1.5 --hash=sha256:4be4b1af8d665c6d942909916d31a213a106800c47d0eeba73d34da3cbc11367 --hash=sha256:e576aa487d679441d7d30abb87e1b43d24fc53bffb8758443b1a9e1cee504548
3-
importlib-metadata==8.6.1 --hash=sha256:02a89390c1e15fdfdc0d7c6b25cb3e62650d0494005c97d6f148bf5b9787525e --hash=sha256:310b41d755445d74569f993ccfc22838295d9fe005425094fad953d7f15c8580
2+
click==8.2.0 --hash=sha256:6b303f0b2aa85f1cb4e5303078fadcbcd4e476f114fab9b5007005711839325c --hash=sha256:f5452aeddd9988eefa20f90f05ab66f17fce1ee2a36907fd30b05bbb5953814d
3+
importlib-metadata==8.7.0 --hash=sha256:d13b81ad223b890aa16c5471f2ac3056cf76c5f10f82d6f9292f0b415f389000 --hash=sha256:e5dd1551894c77868a30651cef00984d50e1002d06942a7101d34870c5f02afd
44
packaging==25.0 --hash=sha256:29572ef2b1f17581046b3a2227d5c611fb25ec70ca1ba8554b24b0e69331a484 --hash=sha256:d443872c98d677bf60f6a1f2f8c1cb748e8fe762d2bf9d3148b5599295b0fc4f
55
pip-tools==7.4.0 --hash=sha256:a92a6ddfa86ff389fe6ace381d463bc436e2c705bd71d52117c25af5ce867bb7 --hash=sha256:b67432fd0759ed834c5367f9e0ce8c95441acecfec9c8e24b41aca166757adf0
66
pyproject-hooks==1.2.0 --hash=sha256:1e859bd5c40fae9448642dd871adf459e5e2084186e8d2c2a79a824c970da1f8 --hash=sha256:9e5c6bfa8dcc30091c74b0cf803c81fdd29d94f01992a7707bc97babb1141913
77
tomli==2.2.1 --hash=sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6 --hash=sha256:02abe224de6ae62c19f090f68da4e27b10af2b93213d36cf44e6e1c5abd19fdd --hash=sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c --hash=sha256:2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b --hash=sha256:33580bccab0338d00994d7f16f4c4ec25b776af3ffaac1ed74e0b3fc95e885a8 --hash=sha256:400e720fe168c0f8521520190686ef8ef033fb19fc493da09779e592861b78c6 --hash=sha256:40741994320b232529c802f8bc86da4e1aa9f413db394617b9a256ae0f9a7f77 --hash=sha256:465af0e0875402f1d226519c9904f37254b3045fc5084697cefb9bdde1ff99ff --hash=sha256:4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea --hash=sha256:4e340144ad7ae1533cb897d406382b4b6fede8890a03738ff1683af800d54192 --hash=sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249 --hash=sha256:6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee --hash=sha256:7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4 --hash=sha256:889f80ef92701b9dbb224e49ec87c645ce5df3fa2cc548664eb8a25e03127a98 --hash=sha256:8d57ca8095a641b8237d5b079147646153d22552f1c637fd3ba7f4b0b29167a8 --hash=sha256:8dd28b3e155b80f4d54beb40a441d366adcfe740969820caf156c019fb5c7ec4 --hash=sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281 --hash=sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744 --hash=sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69 --hash=sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13 --hash=sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140 --hash=sha256:b82ebccc8c8a36f2094e969560a1b836758481f3dc360ce9a3277c65f374285e --hash=sha256:c954d2250168d28797dd4e3ac5cf812a406cd5a92674ee4c8f123c889786aa8e --hash=sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc --hash=sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff --hash=sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec --hash=sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2 --hash=sha256:db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222 --hash=sha256:e59e304978767a54663af13c07b3d1af22ddee3bb2fb0618ca1593e4f593a106 --hash=sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272 --hash=sha256:ece47d672db52ac607a3d9599a9d48dcb2f2f735c6c2d1f34130085bb12b112a --hash=sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7
88
typing-extensions==4.13.1 --hash=sha256:4b6cf02909eb5495cfbc3f6e8fd49217e6cc7944e145cdda8caa3734777f9e69 --hash=sha256:98795af00fb9640edec5b8e31fc647597b4691f099ad75f469a2616be1a76dff
99
wheel==0.45.0 --hash=sha256:52f0baa5e6522155090a09c6bd95718cc46956d1b51d537ea5454249edb671c7 --hash=sha256:a57353941a3183b3d5365346b567a260a0602a0f8a635926a7dede41b94c674a
1010
zipp==3.21.0 --hash=sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4 --hash=sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931
11-
pip==25.0.1 --hash=sha256:88f96547ea48b940a3a385494e181e29fb8637898f88d88737c5049780f196ea --hash=sha256:c46efd13b6aa8279f33f2864459c8ce587ea6a1a59ee20de055868d8f7688f7f
12-
setuptools==79.0.0 --hash=sha256:9828422e7541213b0aacb6e10bbf9dd8febeaa45a48570e09b6d100e063fc9f9 --hash=sha256:b9ab3a104bedb292323f53797b00864e10e434a3ab3906813a7169e4745b912a
11+
pip==25.1.1 --hash=sha256:2913a38a2abf4ea6b64ab507bd9e967f3b53dc1ede74b01b0931e1ce548751af --hash=sha256:3de45d411d308d5054c2168185d8da7f9a2cd753dbac8acbfa88a8909ecd9077
12+
setuptools==80.7.1 --hash=sha256:ca5cc1069b85dc23070a6628e6bcecb3292acac802399c7f8edc0100619f9009 --hash=sha256:f6ffc5f0142b1bd8d0ca94ee91b30c0ca862ffd50826da1ea85258a06fd94552

requirements.txt

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ asyncstdlib==3.13.1 \
2727
--hash=sha256:a64da68176af1da8c699026cad98f70b184f82b4cb39739e0b9701a2a7541cf9 \
2828
--hash=sha256:f47564b9a3566f8f9172631d88c75fe074b0ce2127963b7265d310df9aeed03a
2929
# via sedpack (pyproject.toml)
30-
certifi==2025.1.31 \
31-
--hash=sha256:3d5da6925056f6f18f119200434a4780a94263f10d1c21d032a6f6b2baa20651 \
32-
--hash=sha256:ca78db4565a652026a4db2bcdf68f2fb589ea80d0be70e03929ed730746b84fe
30+
certifi==2025.4.26 \
31+
--hash=sha256:0a816057ea3cdefcef70270d2c515e4506bbc954f417fa5ade2021213bb8f0c6 \
32+
--hash=sha256:30350364dfe371162649852c63336a15c70c6510c2ad5015b21c2345311805f3
3333
# via requests
3434
charset-normalizer==3.4.1 \
3535
--hash=sha256:0167ddc8ab6508fe81860a57dd472b2ef4060e8d378f0cc555707126830f2537 \
@@ -552,9 +552,9 @@ perfcounters==3.0.1 \
552552
--hash=sha256:656b9c739f5dd7595f5b187e93cfcd91958f2afe750ec5c7c1db77f5d960f20d \
553553
--hash=sha256:93463d8a9c3abab104feac8e52450ca3902eb6d0ba57f02c231b3b9b4eca975c
554554
# via sedpack (pyproject.toml)
555-
pluggy==1.5.0 \
556-
--hash=sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1 \
557-
--hash=sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669
555+
pluggy==1.6.0 \
556+
--hash=sha256:7dcc130b76258d33b90f61b658791dede3486c3e6bfb003ee5c9bfb396dd22f3 \
557+
--hash=sha256:e920276dd6813095e9377c0bc5566d94c932c33b27a3e3945d8389c374dd4746
558558
# via pytest
559559
protobuf==6.30.1 \
560560
--hash=sha256:3c25e51e1359f1f5fa3b298faa6016e650d148f214db2e47671131b9063c53be \
@@ -762,9 +762,9 @@ tensorflow-io-gcs-filesystem==0.37.1 \
762762
--hash=sha256:fe8dcc6d222258a080ac3dfcaaaa347325ce36a7a046277f6b3e19abc1efb3c5 \
763763
--hash=sha256:ffebb6666a7bfc28005f4fbbb111a455b5e7d6cd3b12752b7050863ecb27d5cc
764764
# via tensorflow
765-
termcolor==3.0.1 \
766-
--hash=sha256:a6abd5c6e1284cea2934443ba806e70e5ec8fd2449021be55c280f8a3731b611 \
767-
--hash=sha256:da1ed4ec8a5dc5b2e17476d859febdb3cccb612be1c36e64511a6f2485c10c69
765+
termcolor==3.1.0 \
766+
--hash=sha256:591dd26b5c2ce03b9e43f391264626557873ce1d379019786f99b0c2bee140aa \
767+
--hash=sha256:6a6dd7fbee581909eeec6a756cff1d7f7c376063b14e4a298dc4980309e55970
768768
# via
769769
# sedpack (pyproject.toml)
770770
# tensorflow
@@ -1099,9 +1099,9 @@ zstandard==0.23.0 \
10991099
# via sedpack (pyproject.toml)
11001100

11011101
# The following packages are considered to be unsafe in a requirements file:
1102-
setuptools==79.0.0 \
1103-
--hash=sha256:9828422e7541213b0aacb6e10bbf9dd8febeaa45a48570e09b6d100e063fc9f9 \
1104-
--hash=sha256:b9ab3a104bedb292323f53797b00864e10e434a3ab3906813a7169e4745b912a
1102+
setuptools==80.7.1 \
1103+
--hash=sha256:ca5cc1069b85dc23070a6628e6bcecb3292acac802399c7f8edc0100619f9009 \
1104+
--hash=sha256:f6ffc5f0142b1bd8d0ca94ee91b30c0ca862ffd50826da1ea85258a06fd94552
11051105
# via
11061106
# tensorboard
11071107
# tensorflow

0 commit comments

Comments
 (0)