Skip to content
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

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

Closed

Conversation

dependabot[bot]
Copy link

@dependabot dependabot bot commented on behalf of github Mar 1, 2025

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

Package From To
commitizen 3.29.1 4.3.0
coverage 7.6.1 7.6.12
mypy 1.11.1 1.15.0
poethepoet 0.27.0 0.32.2
pre-commit 3.8.0 4.1.0
pytest 8.3.2 8.3.4
ruff 0.6.1 0.9.9
safety 3.2.3 3.2.14
typeguard 4.3.0 4.4.2
cruft 2.15.0 2.16.0
ipython 8.18.0 8.33.0
ipywidgets 8.1.3 8.1.5
matplotlib 3.9.2 3.10.1
pdoc 14.6.0 15.0.1

Updates commitizen from 3.29.1 to 4.3.0

Release notes

Sourced from commitizen's releases.

v4.3.0 (2025-02-28)

Feat

  • providers: add uv_provider

[master 63191a3e] bump: version 4.2.2 → 4.3.0 4 files changed, 10 insertions(+), 4 deletions(-)

v4.2.2 (2025-02-18)

Fix

  • bump: manual version bump if prerelease offset is configured

[master a330ac72] bump: version 4.2.1 → 4.2.2 4 files changed, 10 insertions(+), 4 deletions(-)

v4.2.1 (2025-02-08)

Fix

  • bump: add debugging to bump

[master 8519ca47] bump: version 4.2.0 → 4.2.1 4 files changed, 10 insertions(+), 4 deletions(-)

v4.2.0 (2025-02-07)

Feat

  • draft of the --empty parameter

Refactor

  • bump: rename --empty as --allow-no-commit

[master 98ae920d] bump: version 4.1.1 → 4.2.0 4 files changed, 14 insertions(+), 4 deletions(-)

v4.1.1 (2025-01-26)

Fix

  • get-next-bump: add a test case
  • get-next-bump: fix to permit usage of --get-next options even when update_changelog_on_bump is set to true

[master c6119812] bump: version 4.1.0 → 4.1.1 4 files changed, 11 insertions(+), 4 deletions(-)

... (truncated)

Changelog

Sourced from commitizen's changelog.

v4.3.0 (2025-02-28)

Feat

  • providers: add uv_provider

v4.2.2 (2025-02-18)

Fix

  • bump: manual version bump if prerelease offset is configured

v4.2.1 (2025-02-08)

Fix

  • bump: add debugging to bump

v4.2.0 (2025-02-07)

Feat

  • draft of the --empty parameter

Refactor

  • bump: rename --empty as --allow-no-commit

v4.1.1 (2025-01-26)

Fix

  • get-next-bump: add a test case
  • get-next-bump: fix to permit usage of --get-next options even when update_changelog_on_bump is set to true

v4.1.0 (2024-12-06)

Feat

  • commit: allow '-- --allow-empty' to create empty commits

v4.0.0 (2024-11-26)

v3.31.0 (2024-11-16)

Feat

  • commitizen: document '--' double dash in '--help'

Fix

... (truncated)

Commits
  • 63191a3 bump: version 4.2.2 → 4.3.0
  • 9639da1 ci(pre-commit): ignore test file eof
  • c2def94 test(providers/uv_provider): add test case test_uv_provider
  • 7805412 feat(providers): add uv_provider
  • a330ac7 bump: version 4.2.1 → 4.2.2
  • d831c99 fix(bump): manual version bump if prerelease offset is configured
  • 295f975 ci(github-actions): add check-commit task
  • 43ee8a0 docs(tutorials): Add "stages" explicitly to the hook example
  • 8519ca4 bump: version 4.2.0 → 4.2.1
  • fe3b726 fix(bump): add debugging to bump
  • Additional commits viewable in compare view

Updates coverage from 7.6.1 to 7.6.12

Changelog

Sourced from coverage's changelog.

Commits
  • 7e5373e docs: sample HTML for 7.6.12
  • a4ed38b docs: prep for 7.6.12
  • ce4efdc build: fix aarch64 kits #1927
  • a1f3192 build: don't publish if kit building failed
  • bb68f99 chore: bump the action-dependencies group with 2 updates (#1926)
  • f3d6b4a refactor: check for more kinds of constant tests
  • 67899ea refactor: we no longer care what kind of constant the compile-time constants are
  • c850f20 refactor: macOS is MACOS, not OSX
  • a1b2c1a build: there are always tweaks to howto.txt
  • 9c03039 build: bump version to 7.6.12
  • Additional commits viewable in compare view

Updates mypy from 1.11.1 to 1.15.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

Different Property Getter and Setter Types

Mypy now supports using different types for property getter and setter.

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

Contributed by Ivan Levkivskyi (PR 18510)

Selectively Disable Deprecated Warnings

It's now possible to selectively disable warnings generated from warnings.deprecated using the --deprecated-calls-exclude option.

# mypy --enable-error-code deprecated
#      --deprecated-calls-exclude=foo.A
import foo
foo.A().func()  # OK, the deprecated warning is ignored
file foo.py
from typing_extensions import deprecated
class A:
@​deprecated("Use A.func2 instead")
def func(self): pass

Contributed by Marc Mueller (PR 18641)

Mypy 1.15

We’ve just uploaded mypy 1.15 to the Python Package Index (PyPI).

... (truncated)

Commits
  • 9397454 remove +dev from version ahead of final release
  • 686b591 remove "unreleased" from 1.15 changelog entry
  • cb4b243 Various small updates to 1.15 changelog (#18599)
  • 1a26502 Prepare changelog for 1.15 release (#18583)
  • d4515e4 Fix a few PR links in the changelog (#18586)
  • f83b643 Add object self-type to tuple test fixture (#18592)
  • ebc2cb8 Prevent crash on generic NamedTuple with unresolved typevar bound (#18585)
  • 63c251e empty commit to trigger wheel rebuild
  • c30573e Fix literal context for ternary expressions (for real) (#18545)
  • 23d862d Fix isinstance with explicit (non generic) type alias (#18512)
  • Additional commits viewable in compare view

Updates poethepoet from 0.27.0 to 0.32.2

Release notes

Sourced from poethepoet's releases.

0.32.2

Fixes

New Contributors

Full Changelog: nat-n/poethepoet@v0.32.1...v0.32.2

0.32.1

Enhancements

Full Changelog: nat-n/poethepoet@v0.32.0...v0.32.1

0.32.0

Enhancements

Full Changelog: nat-n/poethepoet@v0.31.1...v0.32.0

0.31.1

Fixes

Full Changelog: nat-n/poethepoet@v0.31.0...v0.31.1

0.31.0

Enhancements

Fixes

Full Changelog: nat-n/poethepoet@v0.30.0...v0.31.0

0.30.0

Notice

... (truncated)

Commits

Updates pre-commit from 3.8.0 to 4.1.0

Release notes

Sourced from pre-commit's releases.

pre-commit v4.1.0

Features

Fixes

pre-commit v4.0.1

Fixes

pre-commit v4.0.0

Features

Migrating

Changelog

Sourced from pre-commit's changelog.

4.1.0 - 2025-01-20

Features

Fixes

4.0.1 - 2024-10-08

Fixes

4.0.0 - 2024-10-05

Features

Migrating

  • language: python_venv has been removed -- use language: python instead.

... (truncated)

Commits
  • b152e92 v4.1.0
  • c3125a4 Merge pull request #3389 from lorenzwalthert/dev-always-unset-renv
  • c2c061c fix: ensure env patch is applied for vanilla emulation
  • cd429db Merge pull request #3382 from pre-commit/pre-commit-ci-update-config
  • 9b9f8e2 [pre-commit.ci] pre-commit autoupdate
  • 86300a4 Merge pull request #3376 from pre-commit/r-gone
  • 77edad8 install r on ubuntu runners
  • 18b3939 Merge pull request #3375 from pre-commit/dotnet-tests-ubuntu-latest
  • 31cb945 Merge pull request #3374 from pre-commit/docker-image-tests-ubuntu-22-not-pre...
  • 28c3d81 update .net tests to use .net 8
  • Additional commits viewable in compare view

Updates pytest from 8.3.2 to 8.3.4

Release notes

Sourced from pytest's releases.

8.3.4

pytest 8.3.4 (2024-12-01)

Bug fixes

  • #12592: Fixed KeyError{.interpreted-text role="class"} crash when using --import-mode=importlib in a directory layout where a directory contains a child directory with the same name.

  • #12818: Assertion rewriting now preserves the source ranges of the original instructions, making it play well with tools that deal with the AST, like executing.

  • #12849: ANSI escape codes for colored output now handled correctly in pytest.fail{.interpreted-text role="func"} with [pytrace=False]{.title-ref}.

  • #9353: pytest.approx{.interpreted-text role="func"} now uses strict equality when given booleans.

Improved documentation

  • #10558: Fix ambiguous docstring of pytest.Config.getoption{.interpreted-text role="func"}.

  • #10829: Improve documentation on the current handling of the --basetemp option and its lack of retention functionality (temporary directory location and retention{.interpreted-text role="ref"}).

  • #12866: Improved cross-references concerning the recwarn{.interpreted-text role="fixture"} fixture.

  • #12966: Clarify filterwarnings{.interpreted-text role="ref"} docs on filter precedence/order when using multiple @pytest.mark.filterwarnings <pytest.mark.filterwarnings ref>{.interpreted-text role="ref"} marks.

Contributor-facing changes

  • #12497: Fixed two failing pdb-related tests on Python 3.13.

8.3.3

pytest 8.3.3 (2024-09-09)

Bug fixes

  • #12446: Avoid calling @property (and other instance descriptors) during fixture discovery -- by asottile{.interpreted-text role="user"}

  • #12659: Fixed the issue of not displaying assertion failure differences when using the parameter --import-mode=importlib in pytest>=8.1.

... (truncated)

Commits
  • 53f8b4e Update pypa/gh-action-pypi-publish to v1.12.2
  • 98dff36 Prepare release version 8.3.4
  • 1b474e2 approx: use exact comparison for bool (#13013)
  • b541721 docs: Fix wrong statement about sys.modules with importlib import mode (#1298...
  • 16cb87b pytest.fail: fix ANSI escape codes for colored output (#12959) (#12990)
  • be6bc81 Issue #12966 Clarify filterwarnings docs on precedence when using multiple ma...
  • 7aeb72b Improve docs on basetemp and retention (#12912) (#12928)
  • c875841 Merge pull request #12917 from pytest-dev/patchback/backports/8.3.x/ded1f44e5...
  • 6502816 Merge pull request #12913 from jakkdl/dontfailonbadpath
  • 52135b0 Merge pull request #12885 from The-Compiler/pdb-py311 (#12887)
  • Additional commits viewable in compare view

Updates ruff from 0.6.1 to 0.9.9

Release notes

Sourced from ruff's releases.

0.9.9

Release Notes

Preview features

  • Fix caching of unsupported-syntax errors (#16425)

Bug fixes

  • Only show unsupported-syntax errors in editors when preview mode is enabled (#16429)

Contributors

Install ruff 0.9.9

Install prebuilt binaries via shell script

curl --proto '=https' --tlsv1.2 -LsSf https://github.com/astral-sh/ruff/releases/download/0.9.9/ruff-installer.sh | sh

Install prebuilt binaries via powershell script

powershell -ExecutionPolicy ByPass -c "irm https://github.com/astral-sh/ruff/releases/download/0.9.9/ruff-installer.ps1 | iex"

Download ruff 0.9.9

File Platform Checksum
ruff-aarch64-apple-darwin.tar.gz Apple Silicon macOS checksum
ruff-x86_64-apple-darwin.tar.gz Intel macOS checksum
ruff-aarch64-pc-windows-msvc.zip ARM64 Windows checksum
ruff-i686-pc-windows-msvc.zip x86 Windows checksum
ruff-x86_64-pc-windows-msvc.zip x64 Windows checksum
ruff-aarch64-unknown-linux-gnu.tar.gz ARM64 Linux checksum
ruff-i686-unknown-linux-gnu.tar.gz x86 Linux checksum
ruff-powerpc64-unknown-linux-gnu.tar.gz PPC64 Linux checksum
ruff-powerpc64le-unknown-linux-gnu.tar.gz PPC64LE Linux checksum
ruff-s390x-unknown-linux-gnu.tar.gz S390x Linux checksum
ruff-x86_64-unknown-linux-gnu.tar.gz x64 Linux checksum
ruff-armv7-unknown-linux-gnueabihf.tar.gz ARMv7 Linux checksum
ruff-aarch64-unknown-linux-musl.tar.gz ARM64 MUSL Linux checksum

... (truncated)

Changelog

Sourced from ruff's changelog.

0.9.9

Preview features

  • Fix caching of unsupported-syntax errors (#16425)

Bug fixes

  • Only show unsupported-syntax errors in editors when preview mode is enabled (#16429)

0.9.8

Preview features

  • Start detecting version-related syntax errors in the parser (#16090)

Rule changes

  • [pylint] Mark fix unsafe (PLW1507) (#16343)
  • [pylint] Catch case np.nan/case math.nan in match statements (PLW0177) (#16378)
  • [ruff] Add more Pydantic models variants to the list of default copy semantics (RUF012) (#16291)

Server

  • Avoid indexing the project if configurationPreference is editorOnly (#16381)
  • Avoid unnecessary info at non-trace server log level (#16389)
  • Expand ruff.configuration to allow inline config (#16296)
  • Notify users for invalid client settings (#16361)

Configuration

  • Add per-file-target-version option (#16257)

Bug fixes

  • [refurb] Do not consider docstring(s) (FURB156) (#16391)
  • [flake8-self] Ignore attribute accesses on instance-like variables (SLF001) (#16149)
  • [pylint] Fix false positives, add missing methods, and support positional-only parameters (PLE0302) (#16263)
  • [flake8-pyi] Mark PYI030 fix unsafe when comments are deleted (#16322)

Documentation

  • Fix example for S611 (#16316)
  • Normalize inconsistent markdown headings in docstrings (#16364)
  • Document MSRV policy (#16384)

0.9.7

Preview features

... (truncated)

Commits
  • 091d0af Bump version to Ruff 0.9.9 (#16434)
  • 3d72138 Check LinterSettings::preview for version-related syntax errors (#16429)
  • 4a23756 Avoid caching files with unsupported syntax errors (#16425)
  • af62f79 Prioritize "bug" label for changelog sections (#16433)
  • 0ced8d0 [flake8-copyright] Add links to applicable options (CPY001) (#16421)
  • a8e171f Fix string-length limit in documentation for PYI054 (#16432)
  • cf83584 Show version-related syntax errors in the playground (#16419)
  • 764aa0e Allow passing ParseOptions to inline tests (#16357)
  • 568cf88 Bump version to 0.9.8 (#16414)
  • 040071b [red-knot] Ignore surrounding whitespace when looking for `<!-- snapshot-diag...
  • Additional commits viewable in compare view

Updates safety from 3.2.3 to 3.2.14

Changelog

Sourced from safety's changelog.

[3.2.14] - 2024-12-20

  • Add fun-mode (#649)
  • Package version upgrade for psutil and filelock (#652)
  • Package version upgrade for typer (#654)
  • Package version upgrade for pydantic (#655)
  • Add "--use-server-matching" arguement (#640)
  • Bugfix for safety "NoneType is not iterable" error (#657)

[3.2.13] - 2024-12-10

  • Remove email verification for running scans (#645)

[3.2.12] - 2024-12-10

  • Add CVE Details and Single-Key Filtering for JSON Output in safety scan (#643)
  • feature/add-branch-name (#641)
  • feat/add --headless to --help (#636)

[3.2.11] - 2024-11-12

  • chore/upgrade-dparse (#633)
  • Migrate to PyPI Trusted Publisher for Automated Package Deployment (#632)
  • fix/fix-test-validate-func (#631)
  • feat: api keys now work without specifying the env (#630)
  • fix:jupyter notebook rich format removal (#628)

[3.2.10] - 2024-10-25

  • Support for scanning pyproject.toml files (#625)
  • Update safety-schemas version used (#624)
  • Fix basic poloicy test (#622)

[3.2.9] - 2024-10-23

  • chore: deprection-message-for-license-command (4149b70)
  • feat: add-pull-request-template (#604) (61b2fe2)
  • fix: devcontainer fix (be42d8e)
  • fix: safety error when scan is run without being authed (5ec80dd)
  • feat: add-devcontainers-support (0591838)
  • fix: internal-server-error (04d7efb)
  • fix: clarify-vulnerabilities-found/ Fixed the issue where the vulnerabilities (07bc5b7)
  • chore: added check arg depreciation warning (78109e5)
  • feature: release-script: add release script (#602) (cc49542)

[3.2.8] - 2024-09-27

  • feat: enhance version comparison logic for check-updates command (#605)
  • docs: add demo Jupyter Notebook (#601)
  • feat: add script to generate CONTRIBUTORS.md with Shields.io badges based on merged PRs (#600)
  • chore: fix CLI help text by removing rich formatting for cleaner output (#599)
  • chore: hide system scan from help text (#598)
  • chore: add LICENSES.md file to document dependency licenses (#597)
  • docs: add SECURITY.md file with security policy and bug bounty details (#593)

[3.2.7] - 2024-08-29

... (truncated)

Commits
  • 9d3acde Merge pull request #659 from pyupio/chore/update-version
  • b946758 chore/release-version-3.2.14
  • 0286ec6 feat/add dev team membership for contributor action
  • 433edbe Addressed review feedback
  • 97f457b Fix for NoneType is not iterable
  • ee97021 fix/sync pydantic version with safety_schemas
  • 3aa78a6 chore/set minimum version for typer and update
  • c3ff352 chore/update filelock and psutil version
  • 0f1e147 feature/workflow checks if contributor is a collaborator
  • cbea8fc feature/workflow_dispatch to test contributors code
  • Additional commits viewable in compare view

Updates typeguard from 4.3.0 to 4.4.2

Release notes

Sourced from typeguard's releases.

4.4.2

  • Fixed TypeCheckError in unpacking assignment involving properties of a parameter of the function (#506; regression introduced in v4.4.1)
  • Fixed display of module name for forward references (#492; PR by @​JelleZijlstra)
  • Fixed TypeError when using an assignment expression (#510; PR by @​JohannesK71083)
  • Fixed ValueError: no signature found for builtin when checking against a protocol and a matching attribute in the subject is a built-in function (#504)

4.4.1

  • Dropped Python 3.8 support
  • Changed the signature of typeguard_ignore() to be compatible with typing.no_type_check() (PR by @​jolaf)
  • Avoid creating reference cycles when type checking uniontypes and classes
  • Fixed checking of variable assignments involving tuple unpacking (#486)
  • Fixed TypeError when checking a class against type[Self] (#481)
  • Fixed checking of protocols on the class level (against type[SomeProtocol]) (#498)
  • Fixed Self checks in instance/class methods that have positional-only arguments
  • Fixed explicit checks of PEP 604 unions against types.UnionType (#467)
  • Fixed checks against annotations wrapped in NotRequired not being run unless the NotRequired is a forward reference (#454)

4.4.0

  • Added proper checking for method signatures in protocol checks (#465)
  • Fixed basic support for intersection protocols (#490; PR by @​antonagestam)
  • Fixed protocol checks running against the class of an instance and not the instance itself (this produced wrong results for non-method member checks)
Changelog

Sourced from typeguard's changelog.

Version history

This library adheres to Semantic Versioning 2.0 <https://semver.org/#semantic-versioning-200>_.

4.4.2 (2025-02-16)

  • Fixed TypeCheckError in unpacking assignment involving properties of a parameter of the function ([#506](https://github.com/agronholm/typeguard/issues/506) <https://github.com/agronholm/typeguard/issues/506>_; regression introduced in v4.4.1)
  • Fixed display of module name for forward references ([#492](https://github.com/agronholm/typeguard/issues/492) <https://github.com/agronholm/typeguard/pull/492>_; PR by @​JelleZijlstra)
  • Fixed TypeError when using an assignment expression ([#510](https://github.com/agronholm/typeguard/issues/510) <https://github.com/agronholm/typeguard/issues/510>_; PR by @​JohannesK71083)
  • Fixed ValueError: no signature found for builtin when checking against a protocol and a matching attribute in the subject is a built-in function ([#504](https://github.com/agronholm/typeguard/issues/504) <https://github.com/agronholm/typeguard/issues/504>_)

4.4.1 (2024-11-03)

  • Dropped Python 3.8 support
  • Changed the signature of typeguard_ignore() to be compatible with typing.no_type_check() (PR by @​jolaf)
  • Avoid creating reference cycles when type checking uniontypes and classes
  • Fixed checking of variable assignments involving tuple unpacking ([#486](https://github.com/agronholm/typeguard/issues/486) <https://github.com/agronholm/typeguard/issues/486>_)
  • Fixed TypeError when checking a class against type[Self] ([#481](https://github.com/agronholm/typeguard/issues/481) <https://github.com/agronholm/typeguard/issues/481>_)
  • Fixed checking of protocols on the class level (against type[SomeProtocol]) ([#498](https://github.com/agronholm/typeguard/issues/498) <https://github.com/agronholm/typeguard/issues/498>_)
  • Fixed Self checks in instance/class methods that have positional-only arguments
  • Fixed explicit checks of PEP 604 unions against types.UnionType ([#467](https://github.com/agronholm/typeguard/issues/467) <https://github.com/agronholm/typeguard/issues/467>_)
  • Fixed checks against annotations wrapped in NotRequired not being run unless the NotRequired is a forward reference ([#454](https://github.com/agronholm/typeguard/issues/454) <https://github.com/agronholm/typeguard/issues/454>_)

4.4.0 (2024-10-27)

  • Added proper checking for method signatures in protocol checks ([#465](https://github.com/agronholm/typeguard/issues/465) <https://github.com/agronholm/typeguard/pull/465>_)
  • Fixed basic support for intersection protocols ([#490](https://github.com/agronholm/typeguard/issues/490) <https://github.com/agronholm/typeguard/pull/490>_; PR by @​antonagestam)

4.3.0 (2024-05-27)

  • Added support for checking against static protocols
  • Fixed some compatibility problems when running on Python 3.13 ([#460](https://github.com/agronholm/typeguard/issues/460) <https://github.com/agronholm/typeguard/issues/460>_; PR by @​JelleZijlstra)

... (truncated)

Commits
  • 7f63619 Added release date
  • 056a9a8 Fixed signature check raising ValueError for a built-in function
  • 8559911 Switched to JSON output when running mypy
  • 447ee40 Fixed checking of assignment expressions (#511)
  • 95ef60d Fixes for Python 3.14 and PEP 649 (#492)
  • f282802 Fixed TypeCheckError in unpacking assignment involving properties
  • 91b0cbd [pre-commit.ci] pre-commit autoupdate (#505)
  • b6a7e43 Removed changelog entry that was in fact not a user-facing change
  • cb42103 Added release date
  • b32af0b Added tests against an empty protocol
  • Additional commits viewable in compare view

Updates cruft from 2.15.0 to 2.16.0

Release notes

Sourced from cruft's releases.

2.16.0

What's Changed

…ectory with 14 updates

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

| Package | From | To |
| --- | --- | --- |
| [commitizen](https://github.com/commitizen-tools/commitizen) | `3.29.1` | `4.3.0` |
| [coverage](https://github.com/nedbat/coveragepy) | `7.6.1` | `7.6.12` |
| [mypy](https://github.com/python/mypy) | `1.11.1` | `1.15.0` |
| [poethepoet](https://github.com/nat-n/poethepoet) | `0.27.0` | `0.32.2` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `3.8.0` | `4.1.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.2` | `8.3.4` |
| [ruff](https://github.com/astral-sh/ruff) | `0.6.1` | `0.9.9` |
| [safety](https://github.com/pyupio/safety) | `3.2.3` | `3.2.14` |
| [typeguard](https://github.com/agronholm/typeguard) | `4.3.0` | `4.4.2` |
| [cruft](https://github.com/cruft/cruft) | `2.15.0` | `2.16.0` |
| [ipython](https://github.com/ipython/ipython) | `8.18.0` | `8.33.0` |
| [ipywidgets](https://github.com/jupyter-widgets/ipywidgets) | `8.1.3` | `8.1.5` |
| [matplotlib](https://github.com/matplotlib/matplotlib) | `3.9.2` | `3.10.1` |
| [pdoc](https://github.com/mitmproxy/pdoc) | `14.6.0` | `15.0.1` |



Updates `commitizen` from 3.29.1 to 4.3.0
- [Release notes](https://github.com/commitizen-tools/commitizen/releases)
- [Changelog](https://github.com/commitizen-tools/commitizen/blob/master/CHANGELOG.md)
- [Commits](commitizen-tools/commitizen@v3.29.1...v4.3.0)

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

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

Updates `poethepoet` from 0.27.0 to 0.32.2
- [Release notes](https://github.com/nat-n/poethepoet/releases)
- [Commits](nat-n/poethepoet@v0.27.0...v0.32.2)

Updates `pre-commit` from 3.8.0 to 4.1.0
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v3.8.0...v4.1.0)

Updates `pytest` from 8.3.2 to 8.3.4
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.2...8.3.4)

Updates `ruff` from 0.6.1 to 0.9.9
- [Release notes](https://github.com/astral-sh/ruff/releases)
- [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md)
- [Commits](astral-sh/ruff@0.6.1...0.9.9)

Updates `safety` from 3.2.3 to 3.2.14
- [Release notes](https://github.com/pyupio/safety/releases)
- [Changelog](https://github.com/pyupio/safety/blob/main/CHANGELOG.md)
- [Commits](pyupio/safety@3.2.3...3.2.14)

Updates `typeguard` from 4.3.0 to 4.4.2
- [Release notes](https://github.com/agronholm/typeguard/releases)
- [Changelog](https://github.com/agronholm/typeguard/blob/master/docs/versionhistory.rst)
- [Commits](agronholm/typeguard@4.3.0...4.4.2)

Updates `cruft` from 2.15.0 to 2.16.0
- [Release notes](https://github.com/cruft/cruft/releases)
- [Changelog](https://github.com/cruft/cruft/blob/main/CHANGELOG.md)
- [Commits](cruft/cruft@2.15.0...2.16.0)

Updates `ipython` from 8.18.0 to 8.33.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@8.18.0...8.33.0)

Updates `ipywidgets` from 8.1.3 to 8.1.5
- [Release notes](https://github.com/jupyter-widgets/ipywidgets/releases)
- [Commits](jupyter-widgets/ipywidgets@8.1.3...8.1.5)

Updates `matplotlib` from 3.9.2 to 3.10.1
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.9.2...v3.10.1)

Updates `pdoc` from 14.6.0 to 15.0.1
- [Changelog](https://github.com/mitmproxy/pdoc/blob/main/CHANGELOG.md)
- [Commits](mitmproxy/pdoc@v14.6.0...v15.0.1)

---
updated-dependencies:
- dependency-name: commitizen
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: coverage
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: mypy
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: poethepoet
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: pre-commit
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: pytest
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: ruff
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: safety
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: typeguard
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: cruft
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: ipython
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: ipywidgets
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: development-dependencies
- dependency-name: matplotlib
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: pdoc
  dependency-type: direct:development
  update-type: version-update:semver-major
  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 Mar 1, 2025
Copy link
Author

dependabot bot commented on behalf of github Mar 5, 2025

None of your dependencies match this group anymore, you may need to update your configuration file to remove it or change its rules.

@dependabot dependabot bot closed this Mar 5, 2025
@dependabot dependabot bot deleted the dependabot/pip/development-dependencies-835778c132 branch March 5, 2025 14:51
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