Skip to content

Bump the python-dependencies group with 12 updates#558

Closed
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/uv/python-dependencies-6175f5a911
Closed

Bump the python-dependencies group with 12 updates#558
dependabot[bot] wants to merge 1 commit intomasterfrom
dependabot/uv/python-dependencies-6175f5a911

Conversation

@dependabot
Copy link
Contributor

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

Bumps the python-dependencies group with 12 updates:

Package From To
dash 3.2.0 3.3.0
pydantic 2.12.3 2.12.5
deptry 0.23.1 0.24.0
faker 37.12.0 38.2.0
mypy 1.18.2 1.19.0
nbstripout 0.8.1 0.8.2
pre-commit 4.3.0 4.5.0
pyarrow-stubs 20.0.0.20250928 20.0.0.20251107
python-kacl 0.6.7 0.6.8
ruff 0.14.3 0.14.7
types-pygments 2.19.0.20250809 2.19.0.20251121
pydantic-core 2.41.4 2.41.5

Updates dash from 3.2.0 to 3.3.0

Release notes

Sourced from dash's releases.

Dash Version 3.3.0

Added

  • #3395 Add position argument to hooks.devtool
  • #3403 Add app_context to get_app, allowing to get the current app in routes.
  • #3407 Add hidden to callback arguments, hiding the callback from appearing in the devtool callback graph.
  • #3397 Add optional callbacks, suppressing callback warning for missing component ids for a single callback.
  • #3424 Adds support for Patch on clientside callbacks class dash_clientside.Patch, as well as supporting side updates, eg: (Running, SetProps).
  • #3347 Added 'api_endpoint' to callback to expose api endpoints at the provided path for use to be executed directly without dash.
  • #3445 Added API to reverse direction of slider component.
  • #3460 Add /health endpoint for server monitoring and health checks.
  • #3465 Plotly cloud integrations, add devtool API, placeholder plotly cloud CLI & publish button, dash[cloud] extra dependencies.

Fixed

  • #3490 Fix stack overflow when circular callbacks are displayed on the devtool callback
  • #3395 Fix Components added through set_props() cannot trigger related callback functions. Fix #3316
  • #3415 Fix the error triggered when only a single no_update is returned for client-side callback functions with multiple Outputs. Fix #3366
  • #3416 Fix DeprecationWarning in dash/_jupyter.py by migrating from deprecated ipykernel.comm.Comm to comm module
  • #3488 Fix pkgutil.find_loader removal in Python 3.14

Deprecated

  • #3482 Deprecate dash_table.DataTable with replacement from dash[ag-grid] extra requirement.

Dash Version 3.3.0rc2

  • Remove placeholde publish button when on workspace

Dash Version 3.3.0rc1

  • Add placeholder plotly CLI
  • Add dash[cloud] optional dependency.
  • Add placeholder plotly cloud publish button in the devtools.

Dash Version 3.3.0rc0

Added

  • #3395 Add position argument to hooks.devtool
  • #3403 Add app_context to get_app, allowing to get the current app in routes.
  • #3407 Add hidden to callback arguments, hiding the callback from appearing in the devtool callback graph.
  • #3424 Adds support for Patch on clientside callbacks class dash_clientside.Patch, as well as supporting side updates, eg: (Running, SetProps).
  • #3347 Added 'api_endpoint' to callback to expose api endpoints at the provided path for use to be executed directly without dash.

Fixed

  • #3395 Fix Components added through set_props() cannot trigger related callback functions. Fix #3316
  • #3397 Add optional callbacks, suppressing callback warning for missing component ids for a single callback.
  • #3415 Fix the error triggered when only a single no_update is returned for client-side callback functions with multiple Outputs. Fix #3366
  • #3416 Fix DeprecationWarning in dash/_jupyter.py by migrating from deprecated ipykernel.comm.Comm to comm module
Changelog

Sourced from dash's changelog.

[3.3.0] - 2025-11-12

Added

  • #3395 Add position argument to hooks.devtool
  • #3403 Add app_context to get_app, allowing to get the current app in routes.
  • #3407 Add hidden to callback arguments, hiding the callback from appearing in the devtool callback graph.
  • #3397 Add optional callbacks, suppressing callback warning for missing component ids for a single callback.
  • #3424 Adds support for Patch on clientside callbacks class dash_clientside.Patch, as well as supporting side updates, eg: (Running, SetProps).
  • #3347 Added 'api_endpoint' to callback to expose api endpoints at the provided path for use to be executed directly without dash.
  • #3445 Added API to reverse direction of slider component.
  • #3460 Add /health endpoint for server monitoring and health checks.
  • #3465 Plotly cloud integrations, add devtool API, placeholder plotly cloud CLI & publish button, dash[cloud] extra dependencies.

Fixed

  • #3490 Fix stack overflow when circular callbacks are displayed on the devtool callback
  • #3395 Fix Components added through set_props() cannot trigger related callback functions. Fix #3316
  • #3415 Fix the error triggered when only a single no_update is returned for client-side callback functions with multiple Outputs. Fix #3366
  • #3416 Fix DeprecationWarning in dash/_jupyter.py by migrating from deprecated ipykernel.comm.Comm to comm module
  • #3488 Fix pkgutil.find_loader removal in Python 3.14
  • #3496 Fix dcc.Graph infinite resize loop

Deprecated

  • #3482 Deprecate dash_table.DataTable with replacement from dash[ag-grid] extra requirement.
Commits
  • 68d598f updated bundles
  • 7fda6ba Merge pull request #3507 from plotly/master-3.3.0
  • 3bdbc40 Version 3.3.0 build artifacts
  • 6166c51 Merge branch 'dev' into master-3.3.0
  • d468260 Merge pull request #3505 from plotly/version-3.3.0
  • 3541ab5 Version 3.3.0
  • a82e198 update build deps
  • 2308f19 Merge pull request #3490 from Aaron-Wrote-This/bugfix/callback_graph_recursio...
  • 038b882 Bugfix callback graph with circular callbacks by adding visited markers
  • b3b148c Merge pull request #3482 from plotly/deprecate-dash-table
  • Additional commits viewable in compare view

Updates pydantic from 2.12.3 to 2.12.5

Release notes

Sourced from pydantic's releases.

v2.12.5 2025-11-26

v2.12.5 (2025-11-26)

This is the fifth 2.12 patch release, addressing an issue with the MISSING sentinel and providing several documentation improvements.

The next 2.13 minor release will be published in a couple weeks, and will include a new polymorphic serialization feature addressing the remaining unexpected changes to the serialize as any behavior.

  • Fix pickle error when using model_construct() on a model with MISSING as a default value by @​ornariece in #12522.
  • Several updates to the documentation by @​Viicos.

Full Changelog: pydantic/pydantic@v2.12.4...v2.12.5

v2.12.4 2025-11-05

v2.12.4 (2025-11-05)

This is the fourth 2.12 patch release, fixing more regressions, and reverting a change in the build() method of the AnyUrl and Dsn types.

This patch release also fixes an issue with the serialization of IP address types, when serialize_as_any is used. The next patch release will try to address the remaining issues with serialize as any behavior by introducing a new polymorphic serialization feature, that should be used in most cases in place of serialize as any.

Full Changelog: pydantic/pydantic@v2.12.3...v2.12.4

Changelog

Sourced from pydantic's changelog.

v2.12.5 (2025-11-26)

GitHub release

This is the fifth 2.12 patch release, addressing an issue with the MISSING sentinel and providing several documentation improvements.

The next 2.13 minor release will be published in a couple weeks, and will include a new polymorphic serialization feature addressing the remaining unexpected changes to the serialize as any behavior.

  • Fix pickle error when using model_construct() on a model with MISSING as a default value by @​ornariece in #12522.
  • Several updates to the documentation by @​Viicos.

v2.12.4 (2025-11-05)

GitHub release

This is the fourth 2.12 patch release, fixing more regressions, and reverting a change in the build() method of the AnyUrl and Dsn types.

This patch release also fixes an issue with the serialization of IP address types, when serialize_as_any is used. The next patch release will try to address the remaining issues with serialize as any behavior by introducing a new polymorphic serialization feature, that should be used in most cases in place of serialize as any.

Commits
  • bd2d0dd Prepare release v2.12.5
  • 7d0302e Document security implications when using create_model()
  • e9ef980 Fix typo in Standard Library Types documentation
  • f2c20c0 Add pydantic-docs dev dependency, make use of versioning blocks
  • a76c1aa Update documentation about JSON Schema
  • 8cbc72c Add documentation about custom __init__()
  • 99eba59 Add additional test for FieldInfo.get_default()
  • c710769 Special case MISSING sentinel in smart_deepcopy()
  • 20a9d77 Do not delete mock validator/serializer in rebuild_dataclass()
  • c86515a Update parts of the model and revalidate_instances documentation
  • Additional commits viewable in compare view

Updates deptry from 0.23.1 to 0.24.0

Release notes

Sourced from deptry's releases.

0.24.0

What's Changed

Breaking changes

Python 3.9 support dropped

Support for Python 3.9 has been dropped, as it has reached its end of life.

PyPy 3.10 support dropped, 3.11 added

Support for PyPy 3.10 has been dropped, since it is unsupported. We now only test against PyPy 3.11, and only publish wheels for this version.

Features

  • Add GitHub Actions annotations reporter (#1059)
  • Add support for Python 3.14 (#1224)
  • Drop support for Python 3.9 (#1328)
  • Publish wheels for PyPy 3.11 and drop 3.10 (#1227)

Full Changelog

fpgmaas/deptry@0.23.1...0.24.0

Changelog

Sourced from deptry's changelog.

0.24.0 - 2025-11-09

Breaking changes

Python 3.9 support dropped

Support for Python 3.9 has been dropped, as it has reached its end of life.

PyPy 3.10 support dropped, 3.11 added

Support for PyPy 3.10 has been dropped, since it is unsupported. We now only test against PyPy 3.11, and only publish wheels for this version.

Features

  • Add GitHub Actions annotations reporter (#1059)
  • Add support for Python 3.14 (#1224)
  • Drop support for Python 3.9 (#1328)
  • Publish wheels for PyPy 3.11 and drop 3.10 (#1227)

Full Changelog

fpgmaas/deptry@0.23.1...0.24.0

Commits
  • 4cc2d65 docs(changelog): add 0.24.0 release notes (#1330)
  • 8757b31 chore: sync all dependency groups by default and run mypy locally (#1337)
  • 5ebc5c0 feat: add github annotations reporter (#1059)
  • aa59b6f fix(deps): update ruff rust to v0.14.4 (patch) (#1335)
  • 87a6b87 chore(deps): lock file maintenance (#1336)
  • 6b938ae chore(deps): update uv-version to v0.9.8 (#1334)
  • 92c35ba chore(deps): update pre-commit hook woodruffw/zizmor-pre-commit to v1.16.3 (#...
  • a8be290 chore(deps): update pre-commit hook astral-sh/ruff-pre-commit to v0.14.4 (#1332)
  • 6abefd1 chore(deps): update dependency mkdocs-material to v9.6.23 (#1331)
  • 6b55686 test: update all test dependencies (#1313)
  • Additional commits viewable in compare view

Updates faker from 37.12.0 to 38.2.0

Release notes

Sourced from faker's releases.

Release v38.2.0

See CHANGELOG.md.

Release v38.1.0

See CHANGELOG.md.

Release v38.0.0

See CHANGELOG.md.

Changelog

Sourced from faker's changelog.

v38.2.0 - 2025-11-19

v38.1.0 - 2025-11-19

v38.0.0 - 2025-11-11

  • Drop support for Python 3.9
  • Add support for Python 3.14
Commits

Updates mypy from 1.18.2 to 1.19.0

Changelog

Sourced from mypy's changelog.

Mypy Release Notes

Next Release

Drop Support for Python 3.9

Mypy no longer supports running with Python 3.9, which has reached end-of-life. When running mypy with Python 3.10+, it is still possible to type check code that needs to support Python 3.9 with the --python-version 3.9 argument. Support for this will be dropped in the first half of 2026!

Contributed by Marc Mueller (PR 20156).

Mypy 1.19

We’ve just uploaded mypy 1.19.0 to the Python Package Index (PyPI). Mypy is a static type checker for Python. This release includes new features, performance improvements 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.

Python 3.9 Support Ending Soon

This is the last mypy feature release that supports Python 3.9, which reached end of life in October 2025.

Performance Improvements

  • Switch to a more dynamic SCC processing logic (Ivan Levkivskyi, PR 20053)
  • Speed up type aliases (Ivan Levkivskyi, PR 19810)

Fixed‑Format Cache Improvements

Mypy uses a cache by default to speed up incremental runs by reusing partial results from earlier runs. Mypy 1.18 added a new binary fixed-format cache representation as an experimental feature. The feature is no longer experimental, and we are planning to enable it by default in a future mypy release (possibly 1.20), since it's faster and uses less space than the original, JSON-based cache format. Use --fixed-format-cache to enable the fixed-format cache.

Mypy now has an extra dependency on the librt PyPI package, as it's needed for cache serialization and deserialization.

Mypy ships with a tool to convert fixed-format cache files to the old JSON format. Example of how to use this:

$ python -m mypy.exportjson .mypy_cache/.../my_module.data.ff

... (truncated)

Commits

Updates nbstripout from 0.8.1 to 0.8.2

Release notes

Sourced from nbstripout's releases.

0.8.2

  • Preserve Windows CRLF file endings in output file (#202)
  • Prevent BrokenPipeError when flushing the output (@​blaketastic2, #203)
  • README: update usage instructions for git-filter-repo (@​fztrevisan, #201)
  • README: add note about argument quoting for pre-commit hook (#119).
  • Use ruff for code formatting
  • Add type annotations

Full Changelog: kynan/nbstripout@0.8.1...0.8.2

Changelog

Sourced from nbstripout's changelog.

0.8.2 - 2025-11-16

  • Preserve Windows CRLF file endings in output file (#202)
  • Prevent BrokenPipeError when flushing the output (@​blaketastic2, #203)
  • README: update usage instructions for git-filter-repo (@​fztrevisan, #201)
  • README: add note about argument quoting for pre-commit hook (#119).
  • Use ruff for code formatting
  • Add type annotations
Commits
  • 2abb2ae Bump version: 0.8.1 → 0.8.2
  • eef23ee Update changelog for 0.8.2 release
  • 9f54f83 Preserve Windows CRLF file endings in output file, closes #202
  • d4ead20 Prevent BrokenPipeError (#203)
  • 1585d3b README: update usage instructions for git-filter-repo to strip output from no...
  • e28d321 README: disable markdownlint rules 30 & 41
  • 988fae2 README: remove fenced codeblock around indented codeblock
  • e2d3499 README: fix erroneous double quoting of pre-commit args
  • f58c9e0 Type annotations
  • 9e4873d Reformat codebase with ruff
  • Additional commits viewable in compare view

Updates pre-commit from 4.3.0 to 4.5.0

Release notes

Sourced from pre-commit's releases.

pre-commit v4.5.0

Features

pre-commit v4.4.0

Features

Fixes

Changelog

Sourced from pre-commit's changelog.

4.5.0 - 2025-11-22

Features

4.4.0 - 2025-11-08

Features

Fixes

Commits
  • 1af6c8f v4.5.0
  • 3358a3b Merge pull request #3585 from pre-commit/hazmat
  • bdf6879 add pre-commit hazmat
  • e436690 Merge pull request #3584 from pre-commit/exitstack
  • 8d34f95 use ExitStack instead of start + stop
  • 9c7ea88 Merge pull request #3583 from pre-commit/forward-compat-map-manifest
  • 844dacc add forward-compat error message
  • 6a1d543 Merge pull request #3582 from pre-commit/move-gc-back
  • 66278a9 move logic for gc back to commands.gc
  • 1b32c50 Merge pull request #3579 from pre-commit/pre-commit-ci-update-config
  • Additional commits viewable in compare view

Updates pyarrow-stubs from 20.0.0.20250928 to 20.0.0.20251107

Release notes

Sourced from pyarrow-stubs's releases.

20.0.0.20251107

What's Changed

Full Changelog: zen-xu/pyarrow-stubs@20.0.0.20251104...20.0.0.20251107

20.0.0.20251104

What's Changed

Full Changelog: zen-xu/pyarrow-stubs@20.0.0.20250928...20.0.0.20251104

Commits
  • 213aba9 release 20.0.0.20251107 (#273)
  • e389788 refactor(types): Introduce MetaData alias for table metadata (#272)
  • b30b8b2 release 20.0.0.20251104 (#270)
  • 19221e0 fix(typing): Use Mapping and Sequence for data in table and record_batch (#269)
  • 81939a7 [pre-commit.ci] pre-commit autoupdate (#266)
  • 44d4898 fix(typing): Use Mapping for metadata in Table and RecordBatch (#268)
  • See full diff in compare view

Updates python-kacl from 0.6.7 to 0.6.8

Changelog

Sourced from python-kacl's changelog.

[0.6.8] - 2025-11-21

Fixed

  • Prevented issue tracker (jira) to add the same comment multiple times by deduplicating issue ids.

Changed

  • removed buildx container from pipeline and updated to latest dind
Commits
  • bc2e413 [skip ci] Releasing Changelog version 0.6.8
  • 8b0696c Merge branch 'deduplicate-issue-ids' into 'main'
  • f4119f6 removed needs statement
  • c8d56c0 removed buildx helper as it is part of docker now
  • c1cdef8 Prevented issue tracker (jira) to add the same comment multiple times by dedu...
  • ad38bac added logos
  • e374200 "[ci skip] Bump version: 0.6.7 → 0.6.8"
  • See full diff in compare view

Updates ruff from 0.14.3 to 0.14.7

Release notes

Sourced from ruff's releases.

0.14.7

Release Notes

Released on 2025-11-28.

Preview features

  • [flake8-bandit] Handle string literal bindings in suspicious-url-open-usage (S310) (#21469)
  • [pylint] Fix PLR1708 false positives on nested functions (#21177)
  • [pylint] Fix suppression for empty dict without tuple key annotation (PLE1141) (#21290)
  • [ruff] Add rule RUF066 to detect unnecessary class properties (#21535)
  • [ruff] Catch more dummy variable uses (RUF052) (#19799)

Bug fixes

  • [server] Set severity for non-rule diagnostics (#21559)
  • [flake8-implicit-str-concat] Avoid invalid fix in (ISC003) (#21517)
  • [parser] Fix panic when parsing IPython escape command expressions (#21480)

CLI

  • Show partial fixability indicator in statistics output (#21513)

Contributors

Install ruff 0.14.7

Install prebuilt binaries via shell script

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

Install prebuilt binaries via powershell script

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

... (truncated)

Changelog

Sourced from ruff's changelog.

0.14.7

Released on 2025-11-28.

Preview features

  • [flake8-bandit] Handle string literal bindings in suspicious-url-open-usage (S310) (#21469)
  • [pylint] Fix PLR1708 false positives on nested functions (#21177)
  • [pylint] Fix suppression for empty dict without tuple key annotation (PLE1141) (#21290)
  • [ruff] Add rule RUF066 to detect unnecessary class properties (#21535)
  • [ruff] Catch more dummy variable uses (RUF052) (#19799)

Bug fixes

  • [server] Set severity for non-rule diagnostics (#21559)
  • [flake8-implicit-str-concat] Avoid invalid fix in (ISC003) (#21517)
  • [parser] Fix panic when parsing IPython escape command expressions (#21480)

CLI

  • Show partial fixability indicator in statistics output (#21513)

Contributors

0.14.6

Released on 2025-11-21.

Preview features

  • [flake8-bandit] Support new PySNMP API paths (S508, S509) (#21374)

Bug fixes

  • Adjust own-line comment placement between branches (#21185)
  • Avoid syntax error when formatting attribute expressions with outer parentheses, parenthesized value, and trailing comment on value (#20418)
  • Fix panic when formatting comments in unary expressions (#21501)
  • Respect fmt: skip for compound statements on a single line (#20633)
  • [refurb] Fix FURB103 autofix (#21454)

... (truncated)

Commits

Updates types-pygments from 2.19.0.20250809 to 2.19.0.20251121

Commits

Updates pydantic-core from 2.41.4 to 2.41.5

Release notes

Sourced from pydantic-core's releases.

v2.41.5

What's Changed

Bumps the python-dependencies group with 12 updates:

| Package | From | To |
| --- | --- | --- |
| [dash](https://github.com/plotly/dash) | `3.2.0` | `3.3.0` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.12.3` | `2.12.5` |
| [deptry](https://github.com/fpgmaas/deptry) | `0.23.1` | `0.24.0` |
| [faker](https://github.com/joke2k/faker) | `37.12.0` | `38.2.0` |
| [mypy](https://github.com/python/mypy) | `1.18.2` | `1.19.0` |
| [nbstripout](https://github.com/kynan/nbstripout) | `0.8.1` | `0.8.2` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `4.3.0` | `4.5.0` |
| [pyarrow-stubs](https://github.com/zen-xu/pyarrow-stubs) | `20.0.0.20250928` | `20.0.0.20251107` |
| [python-kacl](https://gitlab.com/schmieder.matthias/python-kacl) | `0.6.7` | `0.6.8` |
| [ruff](https://github.com/astral-sh/ruff) | `0.14.3` | `0.14.7` |
| [types-pygments](https://github.com/typeshed-internal/stub_uploader) | `2.19.0.20250809` | `2.19.0.20251121` |
| [pydantic-core](https://github.com/pydantic/pydantic-core) | `2.41.4` | `2.41.5` |


Updates `dash` from 3.2.0 to 3.3.0
- [Release notes](https://github.com/plotly/dash/releases)
- [Changelog](https://github.com/plotly/dash/blob/dev/CHANGELOG.md)
- [Commits](plotly/dash@v3.2.0...v3.3.0)

Updates `pydantic` from 2.12.3 to 2.12.5
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/main/HISTORY.md)
- [Commits](pydantic/pydantic@v2.12.3...v2.12.5)

Updates `deptry` from 0.23.1 to 0.24.0
- [Release notes](https://github.com/fpgmaas/deptry/releases)
- [Changelog](https://github.com/fpgmaas/deptry/blob/main/CHANGELOG.md)
- [Commits](fpgmaas/deptry@0.23.1...0.24.0)

Updates `faker` from 37.12.0 to 38.2.0
- [Release notes](https://github.com/joke2k/faker/releases)
- [Changelog](https://github.com/joke2k/faker/blob/master/CHANGELOG.md)
- [Commits](joke2k/faker@v37.12.0...v38.2.0)

Updates `mypy` from 1.18.2 to 1.19.0
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.18.2...v1.19.0)

Updates `nbstripout` from 0.8.1 to 0.8.2
- [Release notes](https://github.com/kynan/nbstripout/releases)
- [Changelog](https://github.com/kynan/nbstripout/blob/main/CHANGELOG.md)
- [Commits](kynan/nbstripout@0.8.1...0.8.2)

Updates `pre-commit` from 4.3.0 to 4.5.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@v4.3.0...v4.5.0)

Updates `pyarrow-stubs` from 20.0.0.20250928 to 20.0.0.20251107
- [Release notes](https://github.com/zen-xu/pyarrow-stubs/releases)
- [Commits](zen-xu/pyarrow-stubs@20.0.0.20250928...20.0.0.20251107)

Updates `python-kacl` from 0.6.7 to 0.6.8
- [Changelog](https://gitlab.com/schmieder.matthias/python-kacl/blob/main/CHANGELOG.md)
- [Commits](https://gitlab.com/schmieder.matthias/python-kacl/compare/v0.6.7...v0.6.8)

Updates `ruff` from 0.14.3 to 0.14.7
- [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.14.3...0.14.7)

Updates `types-pygments` from 2.19.0.20250809 to 2.19.0.20251121
- [Commits](https://github.com/typeshed-internal/stub_uploader/commits)

Updates `pydantic-core` from 2.41.4 to 2.41.5
- [Release notes](https://github.com/pydantic/pydantic-core/releases)
- [Commits](pydantic/pydantic-core@v2.41.4...v2.41.5)

---
updated-dependencies:
- dependency-name: dash
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pydantic
  dependency-version: 2.12.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: deptry
  dependency-version: 0.24.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: faker
  dependency-version: 38.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: mypy
  dependency-version: 1.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: nbstripout
  dependency-version: 0.8.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: pre-commit
  dependency-version: 4.5.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pyarrow-stubs
  dependency-version: 20.0.0.20251107
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: python-kacl
  dependency-version: 0.6.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: ruff
  dependency-version: 0.14.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: types-pygments
  dependency-version: 2.19.0.20251121
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: pydantic-core
  dependency-version: 2.41.5
  dependency-type: indirect
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Dec 1, 2025
@dependabot dependabot bot requested a review from a team as a code owner December 1, 2025 15:28
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Dec 1, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Dec 5, 2025

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

@dependabot dependabot bot closed this Dec 5, 2025
@dependabot dependabot bot deleted the dependabot/uv/python-dependencies-6175f5a911 branch December 5, 2025 10:12
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:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants