Skip to content

chore(deps-dev): bump the python-dependencies group with 5 updates#579

Open
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/uv/python-dependencies-c6a19b3ed6
Open

chore(deps-dev): bump the python-dependencies group with 5 updates#579
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/uv/python-dependencies-c6a19b3ed6

Conversation

@dependabot
Copy link
Contributor

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

Bumps the python-dependencies group with 5 updates:

Package From To
pytest-celery 1.2.1 1.3.0
ruff 0.15.2 0.15.4
mkdocs-material 9.7.2 9.7.3
notebook 7.5.3 7.5.4
types-tqdm 4.67.3.20260205 4.67.3.20260303

Updates pytest-celery from 1.2.1 to 1.3.0

Release notes

Sourced from pytest-celery's releases.

v1.3.0

What's Changed

Key Highlights

  • Dropped Python 3.8 support.
  • Added Python 3.14 support.
  • Reverted pycurl removal to match celery/kombu v5.6 SQS transport.
  • Made pytest-celery package install configurable in worker Dockerfile.
  • Fixed type annotations in CeleryTestCluster.

Changelog

New Contributors

Full Changelog: celery/pytest-celery@v1.2.1...v1.3.0

Changelog

Sourced from pytest-celery's changelog.

1.3.0

:release-date: 2 March, 2026 :release-by: Tomer Nosrati

What's Changed

Key Highlights

  • Dropped Python 3.8 support.
  • Added Python 3.14 support.
  • Reverted :pypi:pycurl removal to match celery/kombu v5.6 SQS transport.
  • Made pytest-celery package install configurable in worker Dockerfile.
  • Fixed type annotations in CeleryTestCluster.

Changelog

  • remove setuptools from dependencies (#464)
  • Shift Python versions (-3.8, +3.14) (#468)
  • Bumping Poetry from v1.8.4 -> v2.2.1 inc. dependencies (poetry update --with test,dev,ci,docs) (#469)
  • Install local source in the examples (#458)
  • Use Poetry 1.8.4 in ReadTheDocs (#470)
  • Removed --dist=loadscope (#473)
  • Revert pycurl removal to match celery/kombu v5.6 SQS transport (#474)
  • Make pytest-celery package install configurable in worker Dockerfile (#475)
  • fix(typing): Fix nodes type annotations in CeleryTestCluster (#476)
  • Prepare for release: v1.3.0 (#477)

.. _version-1.2.1:

Commits
  • ed30e58 Prepare for release: v1.3.0 (#477)
  • fe88c22 fix(typing): Fix *nodes type annotations in CeleryTestCluster (#476)
  • f00b0c2 Make pytest-celery package install configurable in worker Dockerfile (#475)
  • c045029 Revert pycurl removal to match celery/kombu v5.6 SQS transport (#474)
  • 8386670 Removed --dist=loadscope (#473)
  • 20a8af5 Use Poetry 1.8.4 in ReadTheDocs (#470)
  • 1ab5825 Install local source in the examples (#458)
  • 615b621 Bumping Poetry from v1.8.4 -> v2.2.1 inc. dependencies (poetry update --with ...
  • 6e1a4b9 Shift Python versions (-3.8, +3.14) (#468)
  • a74eaf6 Build(deps): Bump actions/checkout from 5 to 6 (#467)
  • Additional commits viewable in compare view

Updates ruff from 0.15.2 to 0.15.4

Release notes

Sourced from ruff's releases.

0.15.4

Release Notes

Released on 2026-02-26.

This is a follow-up release to 0.15.3 that resolves a panic when the new rule PLR1712 was enabled with any rule that analyzes definitions, such as many of the ANN or D rules.

Bug fixes

  • Fix panic on access to definitions after analyzing definitions (#23588)
  • [pyflakes] Suppress false positive in F821 for names used before del in stub files (#23550)

Documentation

  • Clarify first-party import detection in Ruff (#23591)
  • Fix incorrect import-heading example (#23568)

Contributors

Install ruff 0.15.4

Install prebuilt binaries via shell script

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

Install prebuilt binaries via powershell script

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

Download ruff 0.15.4

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

... (truncated)

Changelog

Sourced from ruff's changelog.

0.15.4

Released on 2026-02-26.

This is a follow-up release to 0.15.3 that resolves a panic when the new rule PLR1712 was enabled with any rule that analyzes definitions, such as many of the ANN or D rules.

Bug fixes

  • Fix panic on access to definitions after analyzing definitions (#23588)
  • [pyflakes] Suppress false positive in F821 for names used before del in stub files (#23550)

Documentation

  • Clarify first-party import detection in Ruff (#23591)
  • Fix incorrect import-heading example (#23568)

Contributors

0.15.3

Released on 2026-02-26.

Preview features

  • Drop explicit support for .qmd file extension (#23572)

    This can now be enabled instead by setting the extension option:

    # ruff.toml
    extension = { qmd = "markdown" }
    pyproject.toml
    [tool.ruff]
    extension = { qmd = "markdown" }

  • Include configured extensions in file discovery (#23400)

  • [flake8-bandit] Allow suspicious imports in TYPE_CHECKING blocks (S401-S415) (#23441)

  • [flake8-bugbear] Allow B901 in pytest hook wrappers (#21931)

  • [flake8-import-conventions] Add missing conventions from upstream (ICN001, ICN002) (#21373)

... (truncated)

Commits
  • f14edd8 Bump 0.15.4 (#23595)
  • fd09d37 Fix panic on access to definitions after analyzing definitions (#23588)
  • 81d655f [pyflakes] suppress false positive in F821 for names used before del in...
  • 625b4f5 [ruff] docs: Clarify first-party import detection in Ruff (#23591)
  • 60facfa one word typo fix in a while_loop.md test case (#23589)
  • fbb9fa7 docs: fix incorrect import-heading example (#23568)
  • 5bc49a9 Increase the ruleset size to 16 bits (#23586)
  • a62ba8c [ty] Fix overloaded callable assignability for unary Callable targets (#23277)
  • e5f2f36 Bump 0.15.3 (#23585)
  • 0e19fc9 [ty] defer calculating conjunctions in narrowing constraints (#23552)
  • Additional commits viewable in compare view

Updates mkdocs-material from 9.7.2 to 9.7.3

Changelog

Sourced from mkdocs-material's changelog.

mkdocs-material-9.7.3 (2026-02-24)

  • Fixed #8567: Print MkDocs 2.0 incompatibility warning to stderr

mkdocs-material-9.7.2 (2026-02-18)

  • Opened up version ranges of optional dependencies for forward-compatibility
  • Added warning to 'mkdocs build' about impending MkDocs 2.0 incompatibility

mkdocs-material-9.7.1 (2025-12-18)

  • Updated requests to 2.30+ to mitigate CVE in urllib
  • Fixed privacy plugin not picking up protocol-relative URLs
  • Fixed #8542: false positives and negatives captured in privacy plugin

mkdocs-material-9.7.0 (2025-11-11)

⚠️ Material for MkDocs is now in maintenance mode

This is the last release of Material for MkDocs that will receive new features. Going forward, the Material for MkDocs team focuses on Zensical, a next-gen static site generator built from first principles. We will provide critical bug fixes and security updates for Material for MkDocs for 12 months at least.

Read the full announcement on our blog: https://squidfunk.github.io/mkdocs-material/blog/2025/11/05/zensical/

This release includes all features that were previously exclusive to the Insiders edition. These features are now freely available to everyone.

Note on deprecated plugins: The projects and typeset plugins are included in this release, but must be considered deprecated. Both plugins proved unsustainable to maintain and represent architectural dead ends. They are provided as-is without ongoing support.

Changes:

  • Added support for pinned blog posts and author profiles
  • Added support for customizing pagination for blog index pages
  • Added support for customizing blog category sort order
  • Added support for staying on page when switching languages
  • Added support for disabling tags in table of contents
  • Added support for nested tags and shadow tags
  • Added support for footnote tooltips
  • Added support for instant previews
  • Added support for instant prefetching
  • Added support for custom social card layouts
  • Added support for custom social card background images
  • Added support for selectable rangs in code blocks
  • Added support for custom selectors for code annotations

... (truncated)

Commits

Updates notebook from 7.5.3 to 7.5.4

Release notes

Sourced from notebook's releases.

v7.5.4

7.5.4

(Full Changelog)

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)

@​jtpio (activity)

Changelog

Sourced from notebook's changelog.

7.5.4

(Full Changelog)

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)

@​jtpio (activity)

Commits

Updates types-tqdm from 4.67.3.20260205 to 4.67.3.20260303

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 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

Bumps the python-dependencies group with 5 updates:

| Package | From | To |
| --- | --- | --- |
| [pytest-celery](https://github.com/celery/pytest-celery) | `1.2.1` | `1.3.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.15.2` | `0.15.4` |
| [mkdocs-material](https://github.com/squidfunk/mkdocs-material) | `9.7.2` | `9.7.3` |
| [notebook](https://github.com/jupyter/notebook) | `7.5.3` | `7.5.4` |
| [types-tqdm](https://github.com/typeshed-internal/stub_uploader) | `4.67.3.20260205` | `4.67.3.20260303` |


Updates `pytest-celery` from 1.2.1 to 1.3.0
- [Release notes](https://github.com/celery/pytest-celery/releases)
- [Changelog](https://github.com/celery/pytest-celery/blob/main/Changelog.rst)
- [Commits](celery/pytest-celery@v1.2.1...v1.3.0)

Updates `ruff` from 0.15.2 to 0.15.4
- [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.15.2...0.15.4)

Updates `mkdocs-material` from 9.7.2 to 9.7.3
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.7.2...9.7.3)

Updates `notebook` from 7.5.3 to 7.5.4
- [Release notes](https://github.com/jupyter/notebook/releases)
- [Changelog](https://github.com/jupyter/notebook/blob/@jupyter-notebook/tree@7.5.4/CHANGELOG.md)
- [Commits](https://github.com/jupyter/notebook/compare/@jupyter-notebook/tree@7.5.3...@jupyter-notebook/tree@7.5.4)

Updates `types-tqdm` from 4.67.3.20260205 to 4.67.3.20260303
- [Commits](https://github.com/typeshed-internal/stub_uploader/commits)

---
updated-dependencies:
- dependency-name: pytest-celery
  dependency-version: 1.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: ruff
  dependency-version: 0.15.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: mkdocs-material
  dependency-version: 9.7.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: notebook
  dependency-version: 7.5.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: types-tqdm
  dependency-version: 4.67.3.20260303
  dependency-type: direct:development
  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 Mar 3, 2026
@codecov
Copy link

codecov bot commented Mar 3, 2026

Codecov Report

✅ All modified and coverable lines are covered by tests.

Flag Coverage Δ
core 93.11% <ø> (ø)
providers 91.79% <ø> (ø)

Flags with carried forward coverage won't be shown. Click here to find out more.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.

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