Skip to content

build(deps-dev): bump the development-dependencies group across 1 directory with 17 updates #1186

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

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 30, 2025

Bumps the development-dependencies group with 17 updates in the / directory:

Package From To
commitizen 4.4.1 4.8.2
mypy 1.15.0 1.16.0
types-mock 5.2.0.20250306 5.2.0.20250516
types-pyyaml 6.0.12.20250326 6.0.12.20250516
pytest-cov 6.0.0 6.1.1
pytest-mock 3.14.0 3.14.1
pytest-timeout 2.3.1 2.4.0
setuptools 78.1.0 80.9.0
argcomplete 3.5.3 3.6.2
coverage 7.8.0 7.8.2
exceptiongroup 1.2.2 1.3.0
identify 2.6.9 2.6.12
mypy-extensions 1.0.0 1.1.0
pluggy 1.5.0 1.6.0
prompt-toolkit 3.0.50 3.0.51
pyflakes 3.3.1 3.3.2
virtualenv 20.29.3 20.31.2

Updates commitizen from 4.4.1 to 4.8.2

Release notes

Sourced from commitizen's releases.

v4.8.2 (2025-05-22)

Refactor

  • check: simplify code
  • check: remove unnecessary variable

[master a8094aeb] bump: version 4.8.1 → 4.8.2 4 files changed, 11 insertions(+), 4 deletions(-)

v4.8.1 (2025-05-22)

Refactor

  • customize: improve code readability

[master ba571827] bump: version 4.8.0 → 4.8.1 4 files changed, 10 insertions(+), 4 deletions(-)

v4.8.0 (2025-05-20)

Feat

  • cli: add --tag-format argument to changelog command

[master 862450f8] bump: version 4.7.2 → 4.8.0 4 files changed, 10 insertions(+), 4 deletions(-)

v4.7.2 (2025-05-18)

Refactor

  • default: capitalize all constants and remove unnecessary variable

[master 8d573069] bump: version 4.7.1 → 4.7.2 4 files changed, 10 insertions(+), 4 deletions(-)

v4.7.1 (2025-05-16)

Fix

  • bump: don't fail if an invalid version tag is present (fix #1410) (#1418)

[master a0cc4901] bump: version 4.7.0 → 4.7.1 4 files changed, 10 insertions(+), 4 deletions(-)

v4.7.0 (2025-05-10)

Feat

... (truncated)

Changelog

Sourced from commitizen's changelog.

v4.8.2 (2025-05-22)

Refactor

  • check: simplify code
  • check: remove unnecessary variable

v4.8.1 (2025-05-22)

Refactor

  • customize: improve code readability

v4.8.0 (2025-05-20)

Feat

  • cli: add --tag-format argument to changelog command

v4.7.2 (2025-05-18)

Refactor

  • default: capitalize all constants and remove unnecessary variable

v4.7.1 (2025-05-16)

Fix

  • bump: don't fail if an invalid version tag is present (fix #1410) (#1418)

v4.7.0 (2025-05-10)

Feat

  • providers: add support for Cargo.lock

Refactor

  • tests: increase verbosity of variables

v4.6.3 (2025-05-07)

Fix

  • changelog.py: cross-platform path handling using os.path.join and modify the path linter and test parameter
  • changelog.py: modify the CHANGELOG.md generated by cz bump --changelog to the right place

v4.6.2 (2025-05-05)

... (truncated)

Commits
  • a8094ae bump: version 4.8.1 → 4.8.2
  • 7fd6ce3 refactor(check): simplify code
  • fe72043 refactor(check): remove unnecessary variable
  • ba57182 bump: version 4.8.0 → 4.8.1
  • d0c2674 refactor(customize): improve code readability
  • 10581b3 test(changelog): code cleanup and better type
  • 225fd76 bump: version 4.7.2 → 4.8.0
  • dbdfa60 docs(cli/screenshots): update CLI screenshots
  • 87873f9 feat(cli): add --tag-format argument to changelog command
  • e3b4465 docs(bug_report): add fallback command if cz version --report is not available
  • Additional commits viewable in compare view

Updates mypy from 1.15.0 to 1.16.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

Mypy 1.16

We’ve just uploaded mypy 1.16 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features and bug fixes. You can install it as follows:

python3 -m pip install -U mypy

You can read the full documentation for this release on Read the Docs.

Different Property Getter and Setter Types

Mypy now supports using different types for a property getter and setter:

class A:
    _value: int
@property
def foo(self) -> int:
    return self._value
@foo.setter
def foo(self, x: str | int) -> None:
try:
self._value = int(x)
except ValueError:
raise Exception(f"'{x}' is not a valid value for 'foo'")

This was contributed by Ivan Levkivskyi (PR 18510).

Flexible Variable Redefinitions (Experimental)

Mypy now allows unannotated variables to be freely redefined with different types when using the experimental --allow-redefinition-new flag. You will also need to enable --local-partial-types. Mypy will now infer a union type when different types are assigned to a variable:

# mypy: allow-redefinition-new, local-partial-types
def f(n: int, b: bool) -> int | str:
if b:
x = n
else:
</tr></table>

... (truncated)

Commits
  • 9e72e96 Update version to 1.16.0
  • 8fe719f Add changelog for 1.16 (#19138)
  • 2a036e7 Revert "Infer correct types with overloads of Type[Guard | Is] (#19161)
  • b6da4fc Allow enum members to have type objects as values (#19160)
  • 334469f [mypyc] Improve documentation of native and non-native classes (#19154)
  • a499d9f Document --allow-redefinition-new (#19153)
  • 96525a2 Merge commit '9e45dadcf6d8dbab36f83d9df94a706c0b4f9207' into release-1.16
  • 9e45dad Clear more data in TypeChecker.reset() instead of asserting (#19087)
  • 772cd0c Add --strict-bytes to --strict (#19049)
  • 0b65f21 Admit that Final variables are never redefined (#19083)
  • Additional commits viewable in compare view

Updates types-mock from 5.2.0.20250306 to 5.2.0.20250516

Commits

Updates types-pyyaml from 6.0.12.20250326 to 6.0.12.20250516

Commits

Updates pytest-cov from 6.0.0 to 6.1.1

Changelog

Sourced from pytest-cov's changelog.

6.1.1 (2025-04-05)

  • Fixed breakage that occurs when --cov-context and the no_cover marker are used together.

6.1.0 (2025-04-01)

  • Change terminal output to use full width lines for the coverage header. Contributed by Tsvika Shapira in [#678](https://github.com/pytest-dev/pytest-cov/issues/678) <https://github.com/pytest-dev/pytest-cov/pull/678>_.
  • Removed unnecessary CovFailUnderWarning. Fixes [#675](https://github.com/pytest-dev/pytest-cov/issues/675) <https://github.com/pytest-dev/pytest-cov/issues/675>_.
  • Fixed the term report not using the precision specified via --cov-precision.
Commits
  • 9463242 Bump version: 6.1.0 → 6.1.1
  • 7f2781b Update changelog.
  • a59548f Allow the context plugin to check if the controller is running or not. Fixes ...
  • 10f8cde Bump version: 6.0.0 → 6.1.0
  • 10b14af Update changelog.
  • aa57aed Refactor a bit the internals to be a bit less boilerplatey and have more clar...
  • e760099 Make sure the CLI precision is used when creating report. Fixes #674.
  • 44540e1 Remove unnecessary CovFailUnderWarning. Closes #675.
  • 204af14 Update changelog.
  • 089e7bb Upgrade ruff.
  • Additional commits viewable in compare view

Updates pytest-mock from 3.14.0 to 3.14.1

Release notes

Sourced from pytest-mock's releases.

v3.14.1

  • #503: Python 3.14 is now officially supported.
Changelog

Sourced from pytest-mock's changelog.

3.14.1 (2025-08-26)

  • [#503](https://github.com/pytest-dev/pytest-mock/issues/503) <https://github.com/pytest-dev/pytest-mock/pull/503>_: Python 3.14 is now officially supported.
Commits

Updates pytest-timeout from 2.3.1 to 2.4.0

Commits

Updates setuptools from 78.1.0 to 80.9.0

Changelog

Sourced from setuptools's changelog.

v80.9.0

Features

  • Set a deadline for the removal of pkg_resources later this year (December). (#3085)
  • Removed reliance on pkg_resources in test_wheel. (#3085)

v80.8.0

Features

  • Replaced more references to pkg_resources with importlib equivalents in wheel odule. (#3085)
  • Restore explicit LICENSE file. (#5001)
  • Removed no longer used build dependency on coherent.licensed. (#5003)

v80.7.1

Bugfixes

  • Only attempt to fetch eggs for unsatisfied requirements. (#4998)
  • In installer, when discovering egg dists, let metadata discovery search each egg. (#4998)

v80.7.0

Features

  • Removed usage of pkg_resources from installer. Set an official deadline on the installer deprecation to 2025-10-31. (#4997)

Misc

v80.6.0

Features

... (truncated)

Commits
  • 9c4d383 Bump version: 80.8.0 → 80.9.0
  • 05cb3c8 Merge pull request #5014 from pypa/debt/pkg_resources-deadline
  • 3b0bf5b Adjust ignore
  • 9c28cdf Set a deadline for the removal of pkg_resources later this year (December).
  • a3bfef9 Merge pull request #5013 from DimitriPapadopoulos/ISC
  • 64bf9d0 Enforce ruff/flake8-implicit-str-concat rules (ISC)
  • 3250c25 Fix broken link in docs (#4947)
  • 5ccf50e Merge pull request #5006 from pypa/feature/remove-more-pkg_resources
  • 134e587 Suppress nitpicky typecheck in pyright.
  • 0bf2663 Add news fragment.
  • Additional commits viewable in compare view

Updates argcomplete from 3.5.3 to 3.6.2

Release notes

Sourced from argcomplete's releases.

v3.6.2

  • Revert "zsh: skip repeat Python runs in the same completion run" This reverts a regression introduced in zsh tab completion configurations utilizing multiple matchers.

v3.6.1

  • zsh: add global completion system install dir to user fpath if not present

    • Update shell_integration.py to support spaces in script file path. (#525)

    • Fix completion when wordbreak is first character (#526)

v3.6.0

  • Support namespace package traversal when completing Python entry points

    • zsh: skip repeat Python runs in the same completion run

    • Make _parse_known_args signature more general for future API changes

Changelog

Sourced from argcomplete's changelog.

Changes for v3.6.2 (2025-04-02)

  • Revert “zsh: skip repeat Python runs in the same completion run” This reverts a regression introduced in zsh tab completion configurations utilizing multiple matchers.

Changes for v3.6.1 (2025-03-22)

  • zsh: add global completion system install dir to user fpath if not present

  • Update shell_integration.py to support spaces in script file path. (#525)

  • Fix completion when wordbreak is first character (#526)

Changes for v3.6.0 (2025-03-05)

  • Support namespace package traversal when completing Python entry points

  • zsh: skip repeat Python runs in the same completion run

  • Make _parse_known_args signature more general for future API changes

Commits
  • a0143a9 v3.6.2
  • 2e5d43e Reformat file with ruff
  • 83d36c5 Revert "zsh: skip repeat Python runs in the same completion run"
  • a70ff6a v3.6.1
  • d0ab3cc Fix error when SHELL is not set
  • 85cd609 Add homebrew install dir to user fpath on macos
  • aa43bfb Update shell_integration.py to support spaces in script file path. (#525)
  • 86eafb2 Fix completion when wordbreak is first character (#526)
  • bb8d688 Update intersphinx config
  • 962a3ed v3.6.0
  • Additional commits viewable in compare view

Updates coverage from 7.8.0 to 7.8.2

Changelog

Sourced from coverage's changelog.

Version 7.8.2 — 2025-05-23

  • Wheels are provided for Windows ARM64 on Python 3.11, 3.12, and 3.13. Thanks, Finn Womack <pull 1972_>_.

.. _issue 1971: nedbat/coveragepy#1971 .. _pull 1972: nedbat/coveragepy#1972

.. _changes_7-8-1:

Version 7.8.1 — 2025-05-21

  • A number of EncodingWarnings were fixed that could appear if you've enabled PYTHONWARNDEFAULTENCODING, fixing issue 1966. Thanks, Henry Schreiner <pull 1967_>.

  • Fixed a race condition when using sys.monitoring with free-threading Python, closing issue 1970_.

.. _issue 1966: nedbat/coveragepy#1966 .. _pull 1967: nedbat/coveragepy#1967 .. _issue 1970: nedbat/coveragepy#1970

.. _changes_7-8-0:

Commits
  • 51ab2e5 build: have to keep expected dist counts in sync
  • be7bbf2 docs: sample HTML for 7.8.2
  • 3cee850 docs: prep for 7.8.2
  • 39bc6b0 docs: provide more details if the kit matrix is edited.
  • a608fb3 build: add support for Windows arm64 (#1972)
  • 2fe6225 build: run tox lint if actions have changed
  • 3d93a78 docs: docs need scriv for making github releases
  • 0c443a2 build: bump version to 7.8.2
  • ed98b87 docs: sample HTML for 7.8.1
  • b98bc9b docs: prep for 7.8.1
  • Additional commits viewable in compare view

Updates exceptiongroup from 1.2.2 to 1.3.0

Release notes

Sourced from exceptiongroup's releases.

1.3.0

  • Added **kwargs to function and method signatures as appropriate to match the signatures in the standard library
  • In line with the stdlib typings in typeshed, updated (Base)ExceptionGroup generic types to define defaults for their generic arguments (defaulting to BaseExceptionGroup[BaseException] and ExceptionGroup[Exception]) (PR by @​mikenerone)
  • Changed BaseExceptionGroup.__init__() to directly call BaseException.__init__() instead of the superclass __init__() in order to emulate the CPython behavior (broken or not) (PR by @​cfbolz)
  • Changed the exceptions attribute to always return the same tuple of exceptions, created from the original exceptions sequence passed to BaseExceptionGroup to match CPython behavior (#143)
Changelog

Sourced from exceptiongroup's changelog.

Version history

This library adheres to Semantic Versioning 2.0 <http://semver.org/>_.

1.3.0

  • Added **kwargs to function and method signatures as appropriate to match the signatures in the standard library
  • In line with the stdlib typings in typeshed, updated (Base)ExceptionGroup generic types to define defaults for their generic arguments (defaulting to BaseExceptionGroup[BaseException] and ExceptionGroup[Exception]) (PR by @​mikenerone)
  • Changed BaseExceptionGroup.__init__() to directly call BaseException.__init__() instead of the superclass __init__() in order to emulate the CPython behavior (broken or not) (PR by @​cfbolz)
  • Changed the exceptions attribute to always return the same tuple of exceptions, created from the original exceptions sequence passed to BaseExceptionGroup to match CPython behavior ([#143](https://github.com/agronholm/exceptiongroup/issues/143) <https://github.com/agronholm/exceptiongroup/issues/143>_)

1.2.2

  • Removed an assert in exceptiongroup._formatting that caused compatibility issues with Sentry ([#123](https://github.com/agronholm/exceptiongroup/issues/123) <https://github.com/agronholm/exceptiongroup/issues/123>_)

1.2.1

  • Updated the copying of __notes__ to match CPython behavior (PR by CF Bolz-Tereick)
  • Corrected the type annotation of the exception handler callback to accept a BaseExceptionGroup instead of BaseException
  • Fixed type errors on Python < 3.10 and the type annotation of suppress() (PR by John Litborn)

1.2.0

  • Added special monkeypatching if Apport <https://github.com/canonical/apport>_ has overridden sys.excepthook so it will format exception groups correctly (PR by John Litborn)
  • Added a backport of contextlib.suppress() from Python 3.12.1 which also handles suppressing exceptions inside exception groups
  • Fixed bare raise in a handler reraising the original naked exception rather than an exception group which is what is raised when you do a raise in an except* handler

1.1.3

  • catch() now raises a TypeError if passed an async exception handler instead of just giving a RuntimeWarning about the coroutine never being awaited. (#66, PR by John Litborn)

... (truncated)

Commits
  • 77fba8a Added the release version
  • 5e153aa Revert "Migrated test dependencies to dependency groups"
  • 5000bfe Migrated tox configuration to native TOML
  • 427220d Updated pytest options
  • 4ca264f Migrated test dependencies to dependency groups
  • 163c3a8 Marked test_exceptions_mutate_original_sequence as xfail on pypy3.11
  • a176574 Always create the exceptions tuple at init and return it from the exceptions ...
  • 550b796 Added BaseExceptionGroup.init, following CPython (#142)
  • 2a84dfd Added typevar defaults to (Base)ExceptionGroup (#147)
  • fb9133b [pre-commit.ci] pre-commit autoupdate (#145)
  • Additional commits viewable in compare view

Updates identify from 2.6.9 to 2.6.12

Commits

Updates mypy-extensions from 1.0.0 to 1.1.0

Commits

Updates pluggy from 1.5.0 to 1.6.0

Changelog

Sourced from pluggy's changelog.

pluggy 1.6.0 (2025-05-15)

Deprecations and Removals

  • [#556](https://github.com/pytest-dev/pluggy/issues/556) <https://github.com/pytest-dev/pluggy/issues/556>_: Python 3.8 is no longer supported.

Bug Fixes

  • [#504](https://github.com/pytest-dev/pluggy/issues/504) <https://github.com/pytest-dev/pluggy/issues/504>_: Fix a regression in pluggy 1.1.0 where using :func:result.get_result() <pluggy.Result.get_result> on the same failed :class:~pluggy.Result causes the exception's traceback to get longer and longer.

  • [#544](https://github.com/pytest-dev/pluggy/issues/544) <https://github.com/pytest-dev/pluggy/issues/544>_: Correctly pass :class:StopIteration through hook wrappers.

    Raising a :class:StopIteration in a generator triggers a :class:RuntimeError.

    If the :class:RuntimeError of a generator has the passed in :class:StopIteration as cause resume with that :class:StopIteration as normal exception instead of failing with the :class:RuntimeError.

  • [#573](https://github.com/pytest-dev/pluggy/issues/573) <https://github.com/pytest-dev/pluggy/issues/573>_: Fix python 3.14 SyntaxError by rearranging code.

Commits
  • fd08ab5 Preparing release 1.6.0
  • c240362 [pre-commit.ci] pre-commit autoupdate (#578)
  • 0ceb558 Merge pull request #546 from RonnyPfannschmidt/ronny/hookwrapper-wrap-legacy
  • 1f4872e [pre-commit.ci] auto fixes from pre-commit.com hooks
  • 4be0c55 add changelog
  • 615c6c5 Merge branch 'main' into hookwrapper-wrap-legacy
  • 2acc644 [pre-commit.ci] pre-commit autoupdate (#577)
  • ea5ada0 [pre-commit.ci] pre-commit autoupdate (#576)
  • dfd250b [pre-commit.ci] pre-commit autoupdate (#575)
  • 1e1862f [pre-commit.ci] pre-commit autoupdate (#574)
  • Additional commits viewable in compare view

Updates prompt-toolkit from 3.0.50 to 3.0.51

Release notes

Sourced from prompt-toolkit's releases.

3.0.51

New features:

  • Use pyproject.toml instead of setup.py.

Fixes:

  • Fix edge case in formatted_text.split_lines when the input starts with a line ending.
Changelog

Sourced from prompt-toolkit's changelog.

3.0.51: 2025-04-15

New features:

  • Use pyproject.toml instead of setup.py.

Fixes:

  • Fix edge case in formatted_text.split_lines when the input starts with a line ending.
Commits
  • d997aab Release 3.0.51
  • 88a011c Use pyproject.toml instead of setup.py and uv(x) in GitHub workflow. (#1984)
  • 68e3c39 Use importlib.metadata to obtain the version in init.py (#1983)
  • 75786f6 Fix edge case with leading line ending in 'split_lines'. (#1982)
  • See full diff in compare view

Updates pyflakes from 3.3.1 to 3.3.2

Changelog

Sourced from pyflakes's changelog.

3.3.2 (2025-03-31)

  • Fix crash with global / nonlocal in class bodies (regressed in 3.3.0)
Commits

Updates virtualenv from 20.29.3 to 20.31.2

Release notes

Sourced from virtualenv's releases.

20.31.2

What's Changed

Full Changelog: pypa/virtualenv@20.31.1...20.31.2

20.31.1

What's Changed

Full Changelog: pypa/virtualenv@20.31.0...20.31.1

20.31.0

What's Changed

New Contributors

Full Changelog: pypa/virtualenv@20.30.0...20.31.0

20.30.0

What's Changed

New Contributors

Full Changelog: pypa/virtualenv@20.29.3...20.30.0

Changelog

Sourced from virtualenv's changelog.

v20.31.2 (2025-05-08)

No significant changes.

v20.31.1 (2025-05-05)

Bugfixes - 20.31.1

- Upgrade embedded wheels:
  • pip to 25.1.1 from 25.1
  • setuptools to 80.3.1 from 78.1.0 (:issue:2880)

v20.31.0 (2025-05-05)

Features - 20.31.0

  • No longer bundle wheel wheels (except on Python 3.8), setuptools includes native bdist_wheel support. Update pip to 25.1. (:issue:2868)

Bugfixes - 20.31.0

- ``get_embed_wheel()`` no longer fails with a :exc:`TypeError` when it is
  called with an unknown *distribution*. (:issue:`2877`)
- Fix ``HelpFormatter`` error with Python 3.14.0b1. (:issue:`2878`)

v20.30.0 (2025-03-31)

Features - 20.30.0

  • Add support for GraalPy <https://github.com/oracle/graalpython>_. (:issue:2832)

Bugfixes - 20.30.0

- Upgrade embedded wheels:
  • setuptools to 78.1.0 from 75.3.2 (:issue:2863)
Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot 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

…ectory with 17 updates

Bumps the development-dependencies group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [commitizen](https://github.com/commitizen-tools/commitizen) | `4.4.1` | `4.8.2` |
| [mypy](https://github.com/python/mypy) | `1.15.0` | `1.16.0` |
| [types-mock](https://github.com/typeshed-internal/stub_uploader) | `5.2.0.20250306` | `5.2.0.20250516` |
| [types-pyyaml](https://github.com/typeshed-internal/stub_uploader) | `6.0.12.20250326` | `6.0.12.20250516` |
| [pytest-cov](https://github.com/pytest-dev/pytest-cov) | `6.0.0` | `6.1.1` |
| [pytest-mock](https://github.com/pytest-dev/pytest-mock) | `3.14.0` | `3.14.1` |
| [pytest-timeout](https://github.com/pytest-dev/pytest-timeout) | `2.3.1` | `2.4.0` |
| [setuptools](https://github.com/pypa/setuptools) | `78.1.0` | `80.9.0` |
| [argcomplete](https://github.com/kislyuk/argcomplete) | `3.5.3` | `3.6.2` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.8.0` | `7.8.2` |
| [exceptiongroup](https://github.com/agronholm/exceptiongroup) | `1.2.2` | `1.3.0` |
| [identify](https://github.com/pre-commit/identify) | `2.6.9` | `2.6.12` |
| [mypy-extensions](https://github.com/python/mypy_extensions) | `1.0.0` | `1.1.0` |
| [pluggy](https://github.com/pytest-dev/pluggy) | `1.5.0` | `1.6.0` |
| [prompt-toolkit](https://github.com/prompt-toolkit/python-prompt-toolkit) | `3.0.50` | `3.0.51` |
| [pyflakes](https://github.com/PyCQA/pyflakes) | `3.3.1` | `3.3.2` |
| [virtualenv](https://github.com/pypa/virtualenv) | `20.29.3` | `20.31.2` |



Updates `commitizen` from 4.4.1 to 4.8.2
- [Release notes](https://github.com/commitizen-tools/commitizen/releases)
- [Changelog](https://github.com/commitizen-tools/commitizen/blob/master/CHANGELOG.md)
- [Commits](commitizen-tools/commitizen@v4.4.1...v4.8.2)

Updates `mypy` from 1.15.0 to 1.16.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.15.0...v1.16.0)

Updates `types-mock` from 5.2.0.20250306 to 5.2.0.20250516
- [Commits](https://github.com/typeshed-internal/stub_uploader/commits)

Updates `types-pyyaml` from 6.0.12.20250326 to 6.0.12.20250516
- [Commits](https://github.com/typeshed-internal/stub_uploader/commits)

Updates `pytest-cov` from 6.0.0 to 6.1.1
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v6.0.0...v6.1.1)

Updates `pytest-mock` from 3.14.0 to 3.14.1
- [Release notes](https://github.com/pytest-dev/pytest-mock/releases)
- [Changelog](https://github.com/pytest-dev/pytest-mock/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-mock@v3.14.0...v3.14.1)

Updates `pytest-timeout` from 2.3.1 to 2.4.0
- [Commits](pytest-dev/pytest-timeout@2.3.1...2.4.0)

Updates `setuptools` from 78.1.0 to 80.9.0
- [Release notes](https://github.com/pypa/setuptools/releases)
- [Changelog](https://github.com/pypa/setuptools/blob/main/NEWS.rst)
- [Commits](pypa/setuptools@v78.1.0...v80.9.0)

Updates `argcomplete` from 3.5.3 to 3.6.2
- [Release notes](https://github.com/kislyuk/argcomplete/releases)
- [Changelog](https://github.com/kislyuk/argcomplete/blob/main/Changes.rst)
- [Commits](kislyuk/argcomplete@v3.5.3...v3.6.2)

Updates `coverage` from 7.8.0 to 7.8.2
- [Release notes](https://github.com/nedbat/coveragepy/releases)
- [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst)
- [Commits](nedbat/coveragepy@7.8.0...7.8.2)

Updates `exceptiongroup` from 1.2.2 to 1.3.0
- [Release notes](https://github.com/agronholm/exceptiongroup/releases)
- [Changelog](https://github.com/agronholm/exceptiongroup/blob/main/CHANGES.rst)
- [Commits](agronholm/exceptiongroup@1.2.2...1.3.0)

Updates `identify` from 2.6.9 to 2.6.12
- [Commits](pre-commit/identify@v2.6.9...v2.6.12)

Updates `mypy-extensions` from 1.0.0 to 1.1.0
- [Commits](python/mypy_extensions@1.0.0...1.1.0)

Updates `pluggy` from 1.5.0 to 1.6.0
- [Changelog](https://github.com/pytest-dev/pluggy/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pluggy@1.5.0...1.6.0)

Updates `prompt-toolkit` from 3.0.50 to 3.0.51
- [Release notes](https://github.com/prompt-toolkit/python-prompt-toolkit/releases)
- [Changelog](https://github.com/prompt-toolkit/python-prompt-toolkit/blob/main/CHANGELOG)
- [Commits](prompt-toolkit/python-prompt-toolkit@3.0.50...3.0.51)

Updates `pyflakes` from 3.3.1 to 3.3.2
- [Changelog](https://github.com/PyCQA/pyflakes/blob/main/NEWS.rst)
- [Commits](PyCQA/pyflakes@3.3.1...3.3.2)

Updates `virtualenv` from 20.29.3 to 20.31.2
- [Release notes](https://github.com/pypa/virtualenv/releases)
- [Changelog](https://github.com/pypa/virtualenv/blob/main/docs/changelog.rst)
- [Commits](pypa/virtualenv@20.29.3...20.31.2)

---
updated-dependencies:
- dependency-name: commitizen
  dependency-version: 4.8.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: mypy
  dependency-version: 1.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: types-mock
  dependency-version: 5.2.0.20250516
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: types-pyyaml
  dependency-version: 6.0.12.20250516
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: pytest-cov
  dependency-version: 6.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: pytest-mock
  dependency-version: 3.14.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: pytest-timeout
  dependency-version: 2.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: setuptools
  dependency-version: 80.9.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: argcomplete
  dependency-version: 3.6.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: coverage
  dependency-version: 7.8.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: exceptiongroup
  dependency-version: 1.3.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: identify
  dependency-version: 2.6.12
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: mypy-extensions
  dependency-version: 1.1.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: pluggy
  dependency-version: 1.6.0
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: prompt-toolkit
  dependency-version: 3.0.51
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: pyflakes
  dependency-version: 3.3.2
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: virtualenv
  dependency-version: 20.31.2
  dependency-type: indirect
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels May 30, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github Jun 2, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Jun 2, 2025
@dependabot dependabot bot deleted the dependabot/pip/development-dependencies-0071aee3ee branch June 2, 2025 11:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants