Skip to content

Bump the pip-dependencies group with 13 updates#3653

Open
dependabot[bot] wants to merge 1 commit intodevfrom
dependabot/pip/pip-dependencies-04420f9310
Open

Bump the pip-dependencies group with 13 updates#3653
dependabot[bot] wants to merge 1 commit intodevfrom
dependabot/pip/pip-dependencies-04420f9310

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 11, 2026

Updates the requirements on black, flake8, flask-talisman, mimesis, mock, numpy, pylint, jupyterlab, pyright, redis, kombu, celery[redis] and selenium to permit the latest version.
Updates black from 22.3.0 to 25.11.0

Release notes

Sourced from black's releases.

25.11.0

Highlights

  • Enable base 3.14 support (#4804)
  • Add support for the new Python 3.14 t-string syntax introduced by PEP 750 (#4805)

Stable style

  • Fix bug where comments between # fmt: off and # fmt: on were reformatted (#4811)
  • Comments containing fmt directives now preserve their exact formatting instead of being normalized (#4811)

Preview style

  • Move multiline_string_handling from --unstable to --preview (#4760)
  • Fix bug where module docstrings would be treated as normal strings if preceded by comments (#4764)
  • Fix bug where python 3.12 generics syntax split line happens weirdly (#4777)
  • Standardize type comments to form # type: <value> (#4645)
  • Fix fix_fmt_skip_in_one_liners preview feature to respect # fmt: skip for compound statements with semicolon-separated bodies (#4800)

Configuration

  • Add no_cache option to control caching behavior. (#4803)

Packaging

  • Releases now include arm64 Linux binaries (#4773)

Output

  • Write unchanged content to stdout when excluding formatting from stdin using pipes (#4610)

Blackd

  • Implemented BlackDClient. This simple python client allows to easily send formatting requests to blackd (#4774)

Integrations

  • Enable 3.14 base CI (#4804)
  • Enhance GitHub Action psf/black to support the required-version major-version-only "stability" format when using pyproject.toml (#4770)
  • Improve error message for vim plugin users. It now handles independently vim version
  • Vim: Warn on unsupported Vim and Python versions independently (#4772)
  • Vim: Print the import paths when importing black fails (#4675)
  • Vim: Fix handling of virtualenvs that have a different Python version (#4675)

... (truncated)

Changelog

Sourced from black's changelog.

25.11.0

Highlights

  • Enable base 3.14 support (#4804)
  • Add support for the new Python 3.14 t-string syntax introduced by PEP 750 (#4805)

Stable style

  • Fix bug where comments between # fmt: off and # fmt: on were reformatted (#4811)
  • Comments containing fmt directives now preserve their exact formatting instead of being normalized (#4811)

Preview style

  • Move multiline_string_handling from --unstable to --preview (#4760)
  • Fix bug where module docstrings would be treated as normal strings if preceded by comments (#4764)
  • Fix bug where python 3.12 generics syntax split line happens weirdly (#4777)
  • Standardize type comments to form # type: <value> (#4645)
  • Fix fix_fmt_skip_in_one_liners preview feature to respect # fmt: skip for compound statements with semicolon-separated bodies (#4800)

Configuration

  • Add no_cache option to control caching behavior. (#4803)

Packaging

  • Releases now include arm64 Linux binaries (#4773)

Output

  • Write unchanged content to stdout when excluding formatting from stdin using pipes (#4610)

Blackd

  • Implemented BlackDClient. This simple python client allows to easily send formatting requests to blackd (#4774)

Integrations

  • Enable 3.14 base CI (#4804)
  • Enhance GitHub Action psf/black to support the required-version major-version-only "stability" format when using pyproject.toml (#4770)
  • Improve error message for vim plugin users. It now handles independently vim version
  • Vim: Warn on unsupported Vim and Python versions independently (#4772)
  • Vim: Print the import paths when importing black fails (#4675)
  • Vim: Fix handling of virtualenvs that have a different Python version (#4675)

... (truncated)

Commits

Updates flake8 from 7.0.0 to 7.3.0

Commits

Updates flask-talisman from 1.0.0 to 1.1.0

Release notes

Sourced from flask-talisman's releases.

v1.1.0

What's Changed

New Contributors

Full Changelog: wntrblm/flask-talisman@v1.0.0...v1.1.0

Commits
  • 98a31bf Update version
  • ea485a5 Update release.yml
  • 6851edd Add Permissions Policy directive browsing-topics
  • 5314ee2 Update readme
  • 0b0d9c4 Update readme
  • 8ff3029 Exclude older Python versions from nox
  • ab4f037 Exclude older Python versions to be compatible with Github Action runtime Ubu...
  • 7271ae9 Update nox runtimes for local testing and in Github Actions to include 3.10 a...
  • 9b7c766 Disable X-XSS protection by default
  • 20055a7 fix typo in permissions_policy examples (#25)
  • See full diff in compare view

Updates mimesis to 12.1.0

Release notes

Sourced from mimesis's releases.

Version 12.1.0

  • Methods gender_code() and gender_symbol() have been added for the Person provider.
  • The methods gender() and sex() no longer accept arguments like iso5218 and symbol. Please use gender_code() and gender_symbol() instead.
  • Added a stub for mimesis.providers.generic.py, enabling type hints for Generic.
Changelog

Sourced from mimesis's changelog.

Version 12.1.0

  • Methods gender_code() and gender_symbol() have been added for the Person provider.
  • The methods gender() and sex() no longer accept arguments like iso5218 and symbol. Please use gender_code() and gender_symbol() instead.
  • Added a stub for mimesis.providers.generic.py, enabling type hints for Generic.

Version 12.0.0

  • Python 3.8 and 3.9 are no longer supported.
  • Added support for field aliases. See the docs for more information.
  • Added the method calver for Development.
  • Added the method stage for Development.
  • Added the method country_emoji_flag for Address.
  • Removed the method hashtags from the Internet provider. Use the words method from the Text provider instead.
  • Removed the providers parameter for Field and Fieldset. Use custom field handlers instead.
  • Removed the parameters pre_release and calver for Development.version. Use the stage and calver methods instead.
  • Moved the method emoji from the Internet provider to the Text provider.
  • Moved the method dsn from the Development provider to the Internet provider.
  • The Text().emoji() method now supports the category parameter and EmojiCategory enum. It also returns an emoji instead of an emoji shortcut string.
  • Added the decorator @handle for Field and Fieldset to register custom fields.
  • Renamed register_field to register_handler for Field and Fieldset.
  • Renamed register_fields to register_handlers for Field and Fieldset.
  • Renamed unregister_field to unregister_handler for Field and Fieldset.
  • Renamed unregister_fields to unregister_handlers for Field and Fieldset.
  • Renamed unregister_all_fields to unregister_all_handlers for Field and Fieldset.

Version 11.0.0

Added:

  • Added support for registering custom fields for Schema. This allows you to use your own fields in schemas. See docs for more information.

Version 10.2.0

Added:

  • Added a new method system_quality_attribute() (and its alias ility()) for Development.

Version 10.1.0

Added:

... (truncated)

Commits

Updates mock from 4.0.3 to 5.2.0

Changelog

Sourced from mock's changelog.

5.2.0

This is release is in memory of Michael Foord__, who originally authored the mock package and passed away in January 2025.

__ https://discuss.python.org/t/in-memoriam-michael-foord-1974-2025/78317

  • gh-65454: :func:unittest.mock.Mock.attach_mock no longer triggers a call to a PropertyMock being attached.

  • gh-117765: Improved documentation for :func:unittest.mock.patch.dict

  • gh-124176: Add support for :func:dataclasses.dataclass in :func:unittest.mock.create_autospec. Now create_autospec will check for potential dataclasses and use :func:dataclasses.fields function to retrieve the spec information.

  • gh-123934: Fix :class:unittest.mock.MagicMock reseting magic methods return values after .reset_mock(return_value=True) was called.

  • gh-90848: Fixed :func:unittest.mock.create_autospec to configure parent mock with keyword arguments.

  • gh-113569: Indicate if there were no actual calls in unittest :meth:~unittest.mock.Mock.assert_has_calls failure.

  • gh-122858: Deprecate :func:!asyncio.iscoroutinefunction in favor of :func:inspect.iscoroutinefunction.

  • gh-104745: Limit starting a patcher (from :func:unittest.mock.patch or :func:unittest.mock.patch.object) more than once without stopping it

  • gh-75988: Fixed :func:unittest.mock.create_autospec to pass the call through to the wrapped object to return the real result.

  • gh-119600: Fix :func:unittest.mock.patch to not read attributes of the target when new_callable is set. Patch by Robert Collins.

  • gh-113407: Fix import of :mod:unittest.mock when CPython is built without docstrings.

  • gh-120732: Fix name passing to :class:unittest.mock.Mock object when using :func:unittest.mock.create_autospec.

5.1.0

  • bpo-44185: :func:unittest.mock.mock_open will call the :func:close method of the file handle mock when it is exiting from the context

... (truncated)

Commits

Updates numpy to 2.0.2

Release notes

Sourced from numpy's releases.

NumPy 2.0.2 release (Aug 26, 2024)

NumPy 2.0.2 Release Notes

NumPy 2.0.2 is a maintenance release that fixes bugs and regressions discovered after the 2.0.1 release.

The Python versions supported by this release are 3.9-3.12.

Contributors

A total of 13 people contributed to this release. People with a "+" by their names contributed a patch for the first time.

  • Bruno Oliveira +
  • Charles Harris
  • Chris Sidebottom
  • Christian Heimes +
  • Christopher Sidebottom
  • Mateusz Sokół
  • Matti Picus
  • Nathan Goldbaum
  • Pieter Eendebak
  • Raghuveer Devulapalli
  • Ralf Gommers
  • Sebastian Berg
  • Yair Chuchem +

Pull requests merged

A total of 19 pull requests were merged for this release.

  • #27000: REL: Prepare for the NumPy 2.0.1 release [wheel build]
  • #27001: MAINT: prepare 2.0.x for further development
  • #27021: BUG: cfuncs.py: fix crash when sys.stderr is not available
  • #27022: DOC: Fix migration note for alltrue and sometrue
  • #27061: BUG: use proper input and output descriptor in array_assign_subscript...
  • #27073: BUG: Mirror VQSORT_ENABLED logic in Quicksort
  • #27074: BUG: Bump Highway to latest master
  • #27077: BUG: Off by one in memory overlap check
  • #27122: BUG: Use the new npyv_loadable_stride_ functions for ldexp and...
  • #27126: BUG: Bump Highway to latest
  • #27128: BUG: add missing error handling in public_dtype_api.c
  • #27129: BUG: fix another cast setup in array_assign_subscript
  • #27130: BUG: Fix building NumPy in FIPS mode
  • #27131: BLD: update vendored Meson for cross-compilation patches
  • #27146: MAINT: Scipy openblas 0.3.27.44.4
  • #27151: BUG: Do not accidentally store dtype metadata in np.save
  • #27195: REV: Revert undef I and document it
  • #27213: BUG: Fix NPY_RAVEL_AXIS on backwards compatible NumPy 2 builds
  • #27279: BUG: Fix array_equal for numeric and non-numeric scalar types

... (truncated)

Commits
  • 854252d Merge pull request #27280 from charris/prepare-2.0.2
  • cffa071 REL: Prepare for the NumPy 2.0.2 release [wheel build]
  • 1693029 Merge pull request #27279 from charris/backport-27275
  • da9f9c3 BUG: Fix array_equal for numeric and non-numeric scalar types
  • ee1cf96 Merge pull request #27213 from charris/backport-27202
  • 49dec35 BUG: Fix NPY_RAVEL_AXIS on backwards compatible NumPy 2 builds
  • be56ae2 Merge pull request #27195 from charris/backport-27182
  • 75b039c REV: Revert undef I and document it
  • 428e2ba Merge pull request #27151 from charris/backport-27143
  • 451516d BUG: Do not accidentally store dtype metadata in np.save
  • Additional commits viewable in compare view

Updates pylint from 3.0.3 to 3.3.9

Commits
  • 4cab7ca Bump pylint to 3.3.9, update changelog
  • 81fb483 [Backport maintenance/3.3.x] Extend catching of ValueError to 3.12.5+ (#10611)
  • 1ef673b [Backport maintenance/3.3.x] Fix flagging undeprecated importlib.resources fu...
  • 194790c Fix invalid refs in 3.3 whatsnew (#10578) (#10579)
  • 9823870 fix: handle inconsistent-return-statements false positive with quit()/`ex...
  • 16fe127 fix: handle for-loop variable shadowing correctly (#10569) (#10571)
  • 6cf727c Add sphinx reference for whatsnew 3.3 (#10564) (#10565)
  • 641a316 Use custom backport action (#10536) (#10537)
  • 65efb67 [fix] Better approach in 'unnecessary-list-index-lookup' to avoid crashes (#1...
  • 78444bb Fix used-before-assignment for PEP 695 type aliases + parameters (#10488) (#1...
  • Additional commits viewable in compare view

Updates jupyterlab to 4.5.6

Release notes

Sourced from jupyterlab's releases.

v4.5.6

4.5.6

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

The following people contributed discussions, new ideas, code and documentation contributions, and review. See our definition of contributors.

(GitHub contributors page for this release)

@​agriyakhetarpal (activity) | @​IsabelParedes (activity) | @​jtpio (activity) | @​krassowski (activity) | @​soniya-malviy (activity) | @​tmetzl (activity)

Commits
  • e514705 [ci skip] Publish 4.5.6
  • a6dda88 Backport PR #18522 on branch 4.5.x (Replace scrollback implementation with sc...
  • 4a28719 Backport PR #18597 on branch 4.5.x (Harmonize translation wrappers in Python ...
  • 1714c4a Backport PR #18593 on branch 4.5.x (Remove unimplemented filebrowser:search...
  • 3624bbe Backport PR #18585 on branch 4.5.x (Fix status bar focus outlines) (#18590)
  • bf99d9d Backport PR #18588 on branch 4.5.x (Fix filebrowser:create-new-file context...
  • 5b6dee9 Backport PR #18572 on branch 4.5.x (Fix single-character code blocks renderin...
  • da80d67 Backport PR #18554 on branch 4.5.x (Hide code input in CodeConsole when c...
  • 5267a8c Backport PR #18549 on branch 4.5.x (Update benchmark snapshots even if base s...
  • 72d29f4 [ci skip] Publish 4.5.5
  • Additional commits viewable in compare view

Updates pyright from 1.1.398 to 1.1.408

Commits

Updates redis to 7.0.1

Release notes

Sourced from redis's releases.

7.0.1

Changes

This release adds small fixes related to documentation.

🧰 Maintenance

  • Add 'multi_database' section to documentation index (313d93f)
  • Revised multi-database client documentation(78df745)
  • Adding info about Multi-database client in README.md (3f7a55e)

We'd like to thank all the contributors who worked on this release! @​dmaier @​petyaslavova

Commits
  • 613a06f Updating redis-py package version to 7.0.1
  • 3f7a55e Adding info about Multi-database client in README.md
  • 313d93f Add 'multi_database' section to documentation index
  • 78df745 Revised multi-database client documentation
  • 7a4e8bc Updating package version to 7.0.0 and supported redis versions in readme.md
  • 64a2721 Refactor healthcheck to use PING instead of ECHO (#3811)
  • 24a7a10 Fixing SORTABLE, INDEXEMPTY and INDEXMISSING order when using RediSearch fiel...
  • 32ba6d8 DOC-5821 update index/query example for runnable notebook (#3807)
  • c1e566f Add handling of empty spaces during CLIENT LIST response parsing (#3797)
  • 295bec6 Adding new ExternalAuthProviderError that will be raised when we receive 'pro...
  • Additional commits viewable in compare view

Updates kombu to 5.6.2

Release notes

Sourced from kombu's releases.

v5.6.2

What's Changed

New Contributors

Full Changelog: celery/kombu@v5.6.1...v5.6.2

Changelog

Sourced from kombu's changelog.

5.6.2

:release-date: 29 December, 2025 :release-by: Tomer Nosrati

What's Changed


- Improve error handling in GCP Pub/Sub ack deadline extension ([#2430](https://github.com/celery/kombu/issues/2430))
- Fix SentinelChannel to pass ACL credentials to master_for() ([#2426](https://github.com/celery/kombu/issues/2426))
- Fix credential_provider compatibility with redis-py < 5.3.0 ([#2423](https://github.com/celery/kombu/issues/2423))
- Simplify requirements given Py3.9+ baseline ([#2414](https://github.com/celery/kombu/issues/2414))
- Prepare for release: v5.6.2 ([#2434](https://github.com/celery/kombu/issues/2434))

.. _version-5.6.1:

5.6.1

:release-date: 25 November, 2025 :release-by: Tomer Nosrati

What's Changed

  • fix: ensure hub close does also remove global event loop reference (#2404)
  • fix: default value for SQS's receive message (#2405)
  • Feat: add support for credential_provider to redis broker (#2408)
  • Prepare for release: v5.6.1 (#2416)

.. _version-5.6.0:

5.6.0

:release-date: 1 November, 2025 :release-by: Tomer Nosrati

Key Highlights


QoS Max Prefetch Limit
----------------------

PR [#2348](https://github.com/celery/kombu/issues/2348) &lt;https://github.com/celery/kombu/pull/2348&gt;_

Prevent Out Of Memory crashes when queues flood with ETA/countdown tasks. The new optional max_prefetch parameter caps how many messages workers hold in memory. Defaults to unlimited (None) to preserve existing behavior.

.. code-block:: python

from kombu.common import QoS

</tr></table>

... (truncated)

Commits

Updates celery[redis] to 5.6.2

Release notes

Sourced from celery[redis]'s releases.

v5.6.2

What's Changed

New Contributors

Full Changelog: celery/celery@v5.6.1...v5.6.2

Changelog

Sourced from celery[redis]'s changelog.

5.6.2

:release-date: 2026-01-04 :release-by: Tomer Nosrati

What's Changed


- Fix recursive WorkController instantiation in DjangoWorkerFixup + AttributeError when pool_cls is a string ([#10045](https://github.com/celery/celery/issues/10045))
- Bugfix: Revoked tasks now immediately update backend status to REVOKED ([#9869](https://github.com/celery/celery/issues/9869))
- Prepare for release: v5.6.2 ([#10049](https://github.com/celery/celery/issues/10049))

.. _version-5.6.1:

5.6.1

:release-date: 2025-12-29 :release-by: Tomer Nosrati

What's Changed

  • Fix Redis Sentinel ACL authentication support (#10013)
  • Fix: Broker heartbeats not sent during graceful shutdown (#9986)
  • docs #5410 -- Document confirm_publish broker transport option (#10016)
  • close DB pools only in prefork mode (#10020)
  • Fix: Avoid unnecessary Django database connection creation during cleanup (#10015)
  • reliable prefork detection (#10023)
  • better coverage (#10029)
  • Docs: clarify result_extended vs periodic task metadata and show headers["periodic_task_name"] example (#10030)
  • Stop importing pytest_subtests (#10032)
  • Only use exceptiongroup backport for Python < 3.11 (#10033)
  • Prepare for release: v5.6.1 (#10037)

.. _version-5.6.0:

5.6.0

:release-date: 2025-11-30 :release-by: Tomer Nosrati

Celery v5.6.0 is now available.

Key Highlights


See :ref:`whatsnew-5.6` for a complete overview or read the main highlights below.
</tr></table> 

... (truncated)

Commits
  • 6a43c84 Prepare for release: v5.6.2 (#10049)
  • 333a82f Bugfix: Revoked tasks now immediately update backend status to REVOKED (#9869)
  • 9d6ab11 Fix recursive WorkController instantiation in DjangoWorkerFixup + AttributeEr...
  • 21dbc73 Prepare for release: v5.6.1 (#10037)
  • ba20bed Only use exceptiongroup backport for Python < 3.11 (#10033)
  • 2167529 Stop importing pytest_subtests
  • 0527296 Bump google-cloud-firestore from 2.21.0 to 2.22.0
  • 5f8659b Clarify 'result_extended' setting usage in tasks
  • f19db70 Bump mypy from 1.19.0 to 1.19.1 (#10028)
  • 6da72bd better coverage (#10029)
  • Additional commits viewable in compare view

Updates selenium to 4.36.0

Release notes

Sourced from selenium's releases.

Selenium 4.36.0

Detailed Changelogs by Component

Java     |     Python     |     DotNet     |     Ruby     |     JavaScript

What's Changed

Updates the requirements on [black](https://github.com/psf/black), [flake8](https://github.com/pycqa/flake8), [flask-talisman](https://github.com/wntrblm/flask-talisman), [mimesis](https://github.com/lk-geimfari/mimesis), [mock](https://github.com/testing-cabal/mock), [numpy](https://github.com/numpy/numpy), [pylint](https://github.com/pylint-dev/pylint), [jupyterlab](https://github.com/jupyterlab/jupyterlab), [pyright](https://github.com/RobertCraigie/pyright-python), [redis](https://github.com/redis/redis-py), [kombu](https://github.com/celery/kombu), [celery[redis]](https://github.com/celery/celery) and [selenium](https://github.com/SeleniumHQ/Selenium) to permit the latest version.

Updates `black` from 22.3.0 to 25.11.0
- [Release notes](https://github.com/psf/black/releases)
- [Changelog](https://github.com/psf/black/blob/main/CHANGES.md)
- [Commits](psf/black@22.3.0...25.11.0)

Updates `flake8` from 7.0.0 to 7.3.0
- [Commits](PyCQA/flake8@7.0.0...7.3.0)

Updates `flask-talisman` from 1.0.0 to 1.1.0
- [Release notes](https://github.com/wntrblm/flask-talisman/releases)
- [Commits](wntrblm/flask-talisman@v1.0.0...v1.1.0)

Updates `mimesis` to 12.1.0
- [Release notes](https://github.com/lk-geimfari/mimesis/releases)
- [Changelog](https://github.com/lk-geimfari/mimesis/blob/master/CHANGELOG.rst)
- [Commits](lk-geimfari/mimesis@0.0.4b...v12.1.0)

Updates `mock` from 4.0.3 to 5.2.0
- [Changelog](https://github.com/testing-cabal/mock/blob/master/CHANGELOG.rst)
- [Commits](testing-cabal/mock@4.0.3...5.2.0)

Updates `numpy` to 2.0.2
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v0.2.0...v2.0.2)

Updates `pylint` from 3.0.3 to 3.3.9
- [Release notes](https://github.com/pylint-dev/pylint/releases)
- [Commits](pylint-dev/pylint@v3.0.3...v3.3.9)

Updates `jupyterlab` to 4.5.6
- [Release notes](https://github.com/jupyterlab/jupyterlab/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/main/RELEASE.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/jupyterlab-example-app@0.1.0...@jupyterlab/lsp@4.5.6)

Updates `pyright` from 1.1.398 to 1.1.408
- [Release notes](https://github.com/RobertCraigie/pyright-python/releases)
- [Commits](RobertCraigie/pyright-python@v1.1.398...v1.1.408)

Updates `redis` to 7.0.1
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@3.5.3...v7.0.1)

Updates `kombu` to 5.6.2
- [Release notes](https://github.com/celery/kombu/releases)
- [Changelog](https://github.com/celery/kombu/blob/main/Changelog.rst)
- [Commits](celery/kombu@v0.1.0...v5.6.2)

Updates `celery[redis]` to 5.6.2
- [Release notes](https://github.com/celery/celery/releases)
- [Changelog](https://github.com/celery/celery/blob/main/Changelog.rst)
- [Commits](celery/celery@v5.1.2...v5.6.2)

Updates `selenium` to 4.36.0
- [Release notes](https://github.com/SeleniumHQ/Selenium/releases)
- [Commits](SeleniumHQ/selenium@selenium-3.141.0...selenium-4.36.0)

---
updated-dependencies:
- dependency-name: black
  dependency-version: 25.11.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip-dependencies
- dependency-name: flake8
  dependency-version: 7.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: flask-talisman
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: mimesis
  dependency-version: 12.1.0
  dependency-type: direct:production
  dependency-group: pip-dependencies
- dependency-name: mock
  dependency-version: 5.2.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip-dependencies
- dependency-name: numpy
  dependency-version: 2.0.2
  dependency-type: direct:production
  dependency-group: pip-dependencies
- dependency-name: pylint
  dependency-version: 3.3.9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip-dependencies
- dependency-name: jupyterlab
  dependency-version: 4.5.6
  dependency-type: direct:production
  dependency-group: pip-dependencies
- dependency-name: pyright
  dependency-version: 1.1.408
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip-dependencies
- dependency-name: redis
  dependency-version: 7.0.1
  dependency-type: direct:production
  dependency-group: pip-dependencies
- dependency-name: kombu
  dependency-version: 5.6.2
  dependency-type: direct:production
  dependency-group: pip-dependencies
- dependency-name: celery[redis]
  dependency-version: 5.6.2
  dependency-type: direct:production
  dependency-group: pip-dependencies
- dependency-name: selenium
  dependency-version: 4.36.0
  dependency-type: direct:production
  dependency-group: pip-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Mar 11, 2026
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update python code labels Mar 11, 2026
@github-actions
Copy link

github-actions bot commented Mar 11, 2026

Thank you for your contribution to Dash! 🎉

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