Skip to content

chore(deps)(deps): bump the python-versions group across 1 directory with 18 updates - #1044

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-versions-a7440b2ae2
Closed

chore(deps)(deps): bump the python-versions group across 1 directory with 18 updates#1044
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-versions-a7440b2ae2

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 20, 2026

Copy link
Copy Markdown
Contributor

Bumps the python-versions group with 17 updates in the / directory:

Package From To
huggingface-hub 1.20.1 1.23.0
poethepoet 0.46.0 0.48.0
sigstore 4.3.0 4.4.0
scipy-stubs 1.17.1.5 1.18.0.1
ipython 9.14.1 9.15.0
matplotlib 3.11.0 3.11.1
pydata-sphinx-theme 0.19.0 0.20.0
sphinx-autodoc-typehints 3.11.0 3.12.1
sphinxcontrib-mermaid 2.0.2 2.0.3
apache-airflow 3.2.2 3.3.0
dagster 1.13.10 1.13.14
plotly 6.8.0 6.9.0
tqdm 4.68.3 4.68.4
numpy 2.4.6 2.5.1
nvidia-cudnn-cu12 9.23.2.1 9.24.0.43
holidays 0.99 0.100
scipy 1.17.1 1.18.0

Updates huggingface-hub from 1.20.1 to 1.23.0

Release notes

Sourced from huggingface-hub's releases.

[v1.23.0] Space templates, CLI extension updates & smoother Xet downloads

🚀 Create Spaces from templates

You can now seed a new Space from one of the official Hub templates (JupyterLab, a Gradio chatbot, a Streamlit app, etc.) instead of starting from an empty repo. List what's available with the new list_space_templates() API or the hf spaces templates CLI command, then pass a template's repo_id (or its short name) to create_repo(..., space_template=...) or hf repos create --type space --template. The Space SDK is inferred from the template, and templates recommended as private (like JupyterLab) are created privately by default unless you explicitly choose a visibility.

# List available templates
$ hf spaces templates
NAME        REPO_ID                             SDK     PREFERRED_PRIVATE
----------- ----------------------------------- ------- -----------------
Streamlit   streamlit/streamlit-template-space  docker
JupyterLab  SpacesExamples/jupyterlab           docker  ✔
Create a Space from a template
$ hf repos create my-jupyterlab --type space --template jupyterlab
✓ Repo created
repo_id: Wauplin/my-jupyterlab
url: https://huggingface.co/spaces/Wauplin/my-jupyterlab

>>> from huggingface_hub import create_repo
>>> create_repo("my-jupyterlab", repo_type="space", space_template="jupyterlab")

🔌 Update installed CLI extensions

A new hf extensions update command brings your installed CLI extensions to their latest published version on GitHub. Pass a name to update a single extension, or run it with no argument to check every installed extension and update the ones that are behind. Updates are applied in place — Python extensions reuse their existing venv and binary extensions are overwritten — so a failed update no longer leaves the extension uninstalled, and extensions that are already up to date are simply skipped.

# Update a single extension (accepts <name>, hf-<name> or OWNER/hf-<name>)
hf extensions update hf-claude
Check every installed extension and update the outdated ones
hf extensions update

📶 Smoother Xet download progress with dual bars

Xet downloads now show two progress bars so you can tell a transfer is alive even on a slow connection. The transfer bar advances as bytes arrive over the network, while the reconstruction bar tracks real progress as buffered chunks are written to disk — previously the single bar could sit at 0% for a long time while data was actually arriving. The dual bars are wired into single-file downloads (hf_hub_download), snapshot_download (where parallel file downloads feed the repo-level transfer and reconstruction bars), the hf download CLI, and bucket downloads.

big.bin: downloading bytes:   |  52.4MB     1.2MB/s
big.bin: reconstructing file: |  52.4MB / 105MB     800kB/s
</tr></table> 

... (truncated)

Commits
  • 0c92853 Release: v1.23.0
  • 6bc5aa0 Release: v1.23.0.rc0
  • 0815693 [CLI] Generate hf-cli skill locally instead of downloading from bucket (#4199)
  • 923acb0 [Utils] Add get_cached_repo_tree utility (#4513)
  • 7625ea3 Expose snapshot_path on IncompleteSnapshotError (#4500)
  • c5a110d [CLI] Add --pipeline-tag, --gated, --apps filters to hf models ls (#4512)
  • b63ed5b [Utils] Treat backslashes as path separators in filter_repo_objects (#4506)
  • 6d40d9c docs: drop /new from Inference Endpoints web interface links (#4509)
  • ed48426 [CI] Fix expand property type tests (#4510)
  • 790120b Support creating a Space from a template (#4504)
  • Additional commits viewable in compare view

Updates poethepoet from 0.46.0 to 0.48.0

Release notes

Sourced from poethepoet's releases.

0.48.0

Enhancements

Full Changelog: nat-n/poethepoet@v0.47.1...v0.48.0

0.47.1

Fixes

Full Changelog: nat-n/poethepoet@v0.47.0...v0.47.1

0.47.0

Enhancements

Fixes

AI Agent Skill 🤖

Install the skill via one of the following methods:

  1. Via a built in poe task (similar to how shell completions are installed):
poe _install_skill                          # auto-detects .claude/.codex/.pi/.agents and prompts
poe _install_skill ~/.claude/skills         # explicit path (substitute your agent's dir)
poe _install_skill <skills-dir> --upgrade   # non-interactive upgrade (skips if same/newer)
  1. From github via npx skills
npx skills add https://github.com/nat-n/poethepoet/tree/v0.46.0/poethepoet/skills/poethepoet

Full Changelog: nat-n/poethepoet@v0.46.0...v0.47.0

Commits
  • e4d032c Bump version to 0.48.0
  • e7a31be feat: Add uses_env task option for loading variables from a task's output (...
  • 1fb4f8d Bump version to 0.47.1
  • 88efc0a chore: regenerate JSON Schema
  • b151b09 fix(args): restore default for absent multiple positional args (#409)
  • d2f9c11 fix: schema generation for strict validation
  • 9231083 Bump version to 0.47.0
  • 994d8ed docs(skill): improve and document SKILL.md based on feedback (#404)
  • 0478c10 fix(args): support all three CLI styles for multi-value args (#402)
  • 8dc4399 feat: respect the FORCE_COLOR environment variable (#403)
  • Additional commits viewable in compare view

Updates sigstore from 4.3.0 to 4.4.0

Release notes

Sourced from sigstore's releases.

v4.4.0

What's Changed

Changed

  • sigstore no longer limits the upper-bound of cryptography in order to be less disruptive to downstream integrators. (#1811)

Fixed

  • Fixed generation of invalid CSRs when the identity is not ASCII (for example a GitHub Actions sub claim containing a non-ASCII environment name). The CSR subject is unused by Fulcio, so it is now omitted entirely (#1507)

New Contributors

Full Changelog: sigstore/sigstore-python@v4.3.0...v4.4.0

Changelog

Sourced from sigstore's changelog.

[4.4.0]

Changed

  • sigstore no longer limits the upper-bound of cryptography in order to be less disruptive to downstream integrators. (#1811)

Fixed

  • Fixed generation of invalid CSRs when the identity is not ASCII (for example a GitHub Actions sub claim containing a non-ASCII environment name). The CSR subject is unused by Fulcio, so it is now omitted entirely (#1507)
Commits
  • d4c83ab Prepare 4.4 release (#1813)
  • 7734e1f build(deps): bump actions/attest-build-provenance in the actions group (#1825)
  • 452c8e2 build(deps-dev): bump ruff from 0.15.19 to 0.15.20 (#1824)
  • 8d870a3 build(deps-dev): bump ruff from 0.15.18 to 0.15.19 (#1823)
  • 2c74d8f build(deps-dev): bump ruff from 0.15.17 to 0.15.18 (#1817)
  • 24efa99 build(deps): bump softprops/action-gh-release from 3.0.0 to 3.0.1 in the acti...
  • 1f2ce57 build(deps-dev): bump pytest from 9.1.0 to 9.1.1 (#1818)
  • fdd163e build(deps-dev): bump mkdocstrings-python from 2.0.4 to 2.0.5 (#1819)
  • 94b8968 build(deps): bump actions/checkout in the actions group (#1815)
  • d407494 build(deps-dev): bump pytest from 9.0.3 to 9.1.0 (#1812)
  • Additional commits viewable in compare view

Updates scipy-stubs from 1.17.1.5 to 1.18.0.1

Release notes

Sourced from scipy-stubs's releases.

v1.18.0.1

This scipy-stubs release fixes many bugs and comes with several improvements. It targets SciPy 1.18.0 and supports Python 3.12-3.14, NumPy 2.0-2.7, and optype 0.15-0.19.

What's Changed

⏬ SciPy 1.18 Changes

✨ Improvements

🐛 Fixes

... (truncated)

Commits
  • 2dc1cf2 🔖 scipy-stubs 1.18.0.1
  • 5739cd0 Merge pull request #1982 from scipy:update-project-metadata-description
  • bb96f4c 💬 update project metadata description
  • 54b75cf Merge pull request #1981 from scipy:bump-optype
  • a3b7d6e ⬆️ increase optype lower bound from 0.14 to 0.15
  • c35220e Merge pull request #1980 from scipy:bump-dev-deps
  • dcc2983 🙈 add # ty: ignore for an inevitable LSP error
  • 0f12f90 🩹 work around new ty false positives for the optype JustFloat types.
  • f560300 ⬆️ upgrade development dependencies
  • 108f737 Merge pull request #1979 from scipy:gh-1829
  • Additional commits viewable in compare view

Updates ipython from 9.14.1 to 9.15.0

Commits
  • 2273f39 release 9.15.0
  • 4774918 fix
  • 4bec98b update whatsnew
  • 42fcfe4 [3.11] Skip stup for Numpy that is not using > 3.11 syntax
  • b5da9ac fix: clarify tk simple-prompt gui message
  • 00bcdee fix: don't let kitty graphics detection crash IPython startup
  • 60f2e26 Fix #12726: %run honors quotes when expanding glob args
  • 3ea7aa6 Strip ANSI escape sequences from Sphinx directive output
  • 9b7d419 Add %xmode Doctest mode for doctest friendly tracebacks
  • fdbdf1c Increase codecov threshold to 0.2% to avoid false PR failures
  • Additional commits viewable in compare view

Updates matplotlib from 3.11.0 to 3.11.1

Release notes

Sourced from matplotlib's releases.

REL: v3.11.1

This is the first bugfix release of the 3.11.x series.

This release contains several bug-fixes and adjustments:

  • Fix tight layout of multiple subplots with sharey=True
  • Fix NoNorm cursor formatting for uint8 images
  • Fix occasional misalignment in reported mouse position (also fix a bug with canvas height)
  • Fix clipped Axis labels on 3D plots with tight layout
  • Fix inverted Axis on 3D plots
  • Fix restoring 'auto' aspect in 3D axes after switching from 'equal'
  • Fix missing glyphs when subsetting Type 1 fonts in PDF
  • Fix oversized embedding of Type 42 fonts in PDF/PostScript files

As well as several documentation and typing improvements and corrections.

Commits
  • 3c1757a REL: v3.11.1
  • 792c6b5 DOC: Prepare for 3.11.1
  • aaff9f6 Merge branch 'v3.11.0-doc' into v3.11.x
  • d4f4527 Merge pull request #32052 from meeseeksmachine/auto-backport-of-pr-32038-on-v...
  • 6ad4bcf Merge pull request #32050 from meeseeksmachine/auto-backport-of-pr-31304-on-v...
  • 7fb74d3 Merge pull request #32051 from meeseeksmachine/auto-backport-of-pr-32037-on-v...
  • c624aec Backport PR #32038: Fix occasional misalignment in reported mouse position (a...
  • 8eda2b7 Backport PR #32037: Bump the actions group with 3 updates
  • a0e7ae5 Backport PR #31304: Fix restoring 'auto' aspect in 3D axes after switching fr...
  • 9001323 Merge pull request #32047 from meeseeksmachine/auto-backport-of-pr-32025-on-v...
  • Additional commits viewable in compare view

Updates pydata-sphinx-theme from 0.19.0 to 0.20.0

Release notes

Sourced from pydata-sphinx-theme's releases.

v0.20.0

What's Changed

🔴 Breaking

Fixes

Internal tooling

Dependencies

New Contributors

Full Changelog: pydata/pydata-sphinx-theme@v0.19.0...v0.20.0

Commits

Updates sphinx-autodoc-typehints from 3.11.0 to 3.12.1

Release notes

Sourced from sphinx-autodoc-typehints's releases.

3.11.1

What's Changed

Full Changelog: tox-dev/sphinx-autodoc-typehints@3.12.1...3.11.1

Commits
  • f5734ac 🐛 fix(annotations): resolve cross-module recursive alias (#724)
  • 684cba5 [pre-commit.ci] pre-commit autoupdate (#722)
  • 5a1ae66 🐛 fix(annotations): render recursive type aliases (#721)
  • ae073b6 build(deps): bump actions/checkout from 6.0.3 to 7.0.0 (#719)
  • cee55dd [pre-commit.ci] pre-commit autoupdate (#718)
  • 882b9e7 [pre-commit.ci] pre-commit autoupdate (#717)
  • See full diff in compare view

Updates sphinxcontrib-mermaid from 2.0.2 to 2.0.3

Changelog

Sourced from sphinxcontrib-mermaid's changelog.

2.0.3 (July 7, 2026)

  • Capture mmdc error message as string for nicer error display
  • Fix local JS module imports on root-level pages by ensuring a valid relative ES module specifier (#246)
  • Defer rendering of Mermaid diagrams hidden by a parent (e.g. Reveal.js slides, unopened tabs) until they become visible, fixing broken SVGs
Commits
  • f992df7 Merge pull request #249 from mgaitan/tkp/203
  • 7ced3de bump to 2.0.3
  • 7346af2 Merge pull request #227 from drillan/fix/lazy-render-hidden-elements
  • b6d1fdc Merge branch 'master' into fix/lazy-render-hidden-elements
  • 425076f Apply zoom to deferred diagrams and fix zoom completion loop
  • 9261af4 Merge pull request #248 from timkpaine/tkp/hf
  • a902799 Fix local JS module imports on root-level pages
  • 881b38a Merge pull request #245 from imphil/string-error-message
  • 4fa3848 fix: Capture mmdc error message as string
  • 1a6cad0 Backfill CHANGELOG for 2.0.2
  • Additional commits viewable in compare view

Updates apache-airflow from 3.2.2 to 3.3.0

Release notes

Sourced from apache-airflow's releases.

Apache Airflow 3.3.0

📦 PyPI: https://pypi.org/project/apache-airflow/3.3.0/ 📚 Docs: https://airflow.apache.org/docs/apache-airflow/3.3.0/ 🛠 Release Notes: https://airflow.apache.org/docs/apache-airflow/3.3.0/release_notes.html 🐳 Docker Image: "docker pull apache/airflow:3.3.0" 🚏 Constraints: https://github.com/apache/airflow/tree/constraints-3.3.0

Significant Changes

Asset Partitioning (#64571, #65447, #66030, #66848, #67184, #67475, #67716, #68978)

Building on the asset partitioning introduced in 3.2.0, Airflow 3.3.0 substantially expands how a single upstream asset event fans out to partitioned downstream Dag runs. New partition mappers — RollupMapper (many-to-one), FanOutMapper (one-to-many), and FixedKeyMapper + SegmentWindow (categorical rollup) — compose with time windows (day/week/month/quarter/year) and a wait_policy (WaitForAll or MinimumCount(n)) to control when partitioned runs fire. Windows can fan out forward or backward in time, and total fan-out per upstream event is bounded by the new [scheduler] partition_mapper_max_downstream_keys config (configurable per mapper). Airflow 3.3.0 also adds the PartitionedAtRuntime timetable, which lets a Dag declare that its partition key(s) are assigned when the run starts rather than mapped from an upstream event.

For detailed usage instructions, see :doc:/authoring-and-scheduling/assets.

Task and Asset State Store (#65759, #66073, #66160, #66463, #66586, #66859, #67041, #67292, #67319)

Airflow 3.3.0 introduces a first-class state store for tasks and assets (AIP-103). Tasks can persist arbitrary key-value state that survives across retries and runs via a new task_state_store accessor, and assets can carry their own state via asset_state_store — both available from the Task SDK. State is kept in the metadata database by default, or in a custom worker-side backend ([workers] state_store_backend), supports per-key retention with periodic garbage collection and an optional clear_on_success, and is fully manageable through the Core API and Execution API.

For detailed usage instructions, see :doc:/core-concepts/task-and-asset-state-store.

Pluggable Retry Policies (#65474)

Task retry behaviour is now pluggable (AIP-105). In addition to a fixed retries count, you can attach a custom retry policy that decides whether and when a task is retried, enabling strategies such as retrying only on specific exceptions or backing off based on custom logic.

For detailed usage instructions, see :ref:concepts:retry-policies.

Language Task SDK (Java and Go) (#65958, #67161, #67635, #67699)

Airflow 3.3.0 adds a Coordinator layer (AIP-108) that lets individual task implementations be written in non-Python languages while the Dag and its scheduling stay in Python. A task is declared in the Dag

... (truncated)

Changelog

Sourced from apache-airflow's changelog.

.. Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. The ASF licenses this file to you under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

.. http://www.apache.org/licenses/LICENSE-2.0

.. Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Dockerfile Changelog

The Dockerfile does not strictly follow the SemVer <https://semver.org/>_ approach of Apache Airflow when it comes to features and backwards compatibility. While Airflow code strictly follows it, the Dockerfile is really a way to give users a conveniently packaged Airflow using standard container approach, so occasionally there are some changes in the building process or in the entrypoint of the image that require slight adaptation of how it is used or built.

The Changelog below describes the changes introduced in each version of the docker images released by the Airflow team.

:note: The Changelog below concerns only the convenience production images released at Airflow DockerHub <https://hub.docker.com/r/apache/airflow>_ . The images that are released there are usually built using the Dockerfile released together with Airflow. However, you are free to take latest released Dockerfile from Airflow and use it to build an image for any Airflow version from the Airflow 2 line. There is no guarantee that it will work, but if it does, then you can use latest features from that image to build images for previous Airflow versions.

Airflow 3.1.4


In Airflow 3.1.4, the images are build without removing of .pyc and .pyo files when Python is built.
This increases the size of the image slightly (<0.5%), but improves performance of Python in the container
because Python does not need to recompile the files on the first run but more importantly, if you use
``exec`` to run Health Checks, removed .pyc files caused a small but ever growing memory leak in the Unix
kernel connected to negative ``dentries`` created when .pyc files were attempted to be compiled and failed.
This over time could lead to out-of-memory issues on the host running the container.

More information about dentries can be found in this article &lt;https://lwn.net/Articles/814535/&gt;_.

Airflow 3.1.0

... (truncated)

Commits
  • 1438ea3 update release notes for 3.3.0rc2
  • fa08188 [v3-3-test] Fix asset event ingestion crash for Dags using FixedKeyMapper (#6...
  • 43562ca [v3-3-test] Fix details panel header overlapping the tabs (#69255) (#69318)
  • 428b89b [v3-3-test] Rename state-store cleanup-task-state-store command to `state-s...
  • a1579dc [v3-3-test] Fix new DAG versions from serializing a retry_policy object (#692...
  • e494673 [v3-3-test] Clarify when last_automated_data_interval is None in timetable do...
  • def55d0 [v3-3-test] Fix deadline callback data persistence (#69073) (#69259)
  • 9e0fb00 [v3-3-test] Fix retry policy overrides not persisted to task instance history...
  • bf56f0f [v3-3-test] Add new Committers to CODEOWNERS (#69215) (#69219)
  • 95128d0 Update SQLAlchemy documentation links from 1.4 to 2.0 (#69200) (#69203)
  • Additional commits viewable in compare view

Updates dagster from 1.13.10 to 1.13.14

Changelog

Sourced from dagster's changelog.

1.13.14 (core) / 0.29.14 (libraries)

Bugfixes

  • Fixed a 401 error from the serverless I/O manager when materializing assets in an organization with more than one full deployment.
  • Fixed a 400 error from the serverless I/O manager when materializing assets whose storage keys contain special characters.

1.13.13 (core) / 0.29.13 (libraries)

New

  • [ui] The asset launch dialog now automatically expands the warnings section when alerts are present.

Bugfixes

  • Fixed an issue where a fresh installation of dagster could resolve an incompatible version of grpcio-health-checking, breaking code server imports due to a protobuf version conflict.
  • [ui] Fixed an error that occurred when viewing tick details for declarative automation runs.

1.13.12 (core) / 0.29.12 (libraries)

New

  • [ui] Improved the performance of the runs feed for runs that target large numbers of assets and asset checks. The feed now fetches a bounded preview of the selection and loads the full lists on demand.
  • [dagster-aws] Added a dashboard_refresh_interval parameter to PipesEMRServerlessClient and increased its default so that Spark UI URLs are no longer invalidated prematurely during a run. (Thanks, @​noy-solvin!)

Bugfixes

  • Fixed a bug where a partitioned asset check with its own automation condition could raise a CheckError and halt the e...

    Description has been truncated

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jul 20, 2026
@dependabot
dependabot Bot requested a review from a team July 20, 2026 04:50
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Jul 20, 2026
…with 18 updates

Bumps the python-versions group with 17 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [huggingface-hub](https://github.com/huggingface/huggingface_hub) | `1.20.1` | `1.23.0` |
| [poethepoet](https://github.com/nat-n/poethepoet) | `0.46.0` | `0.48.0` |
| [sigstore](https://github.com/sigstore/sigstore-python) | `4.3.0` | `4.4.0` |
| [scipy-stubs](https://github.com/scipy/scipy-stubs) | `1.17.1.5` | `1.18.0.1` |
| [ipython](https://github.com/ipython/ipython) | `9.14.1` | `9.15.0` |
| [matplotlib](https://github.com/matplotlib/matplotlib) | `3.11.0` | `3.11.1` |
| [pydata-sphinx-theme](https://github.com/pydata/pydata-sphinx-theme) | `0.19.0` | `0.20.0` |
| [sphinx-autodoc-typehints](https://github.com/tox-dev/sphinx-autodoc-typehints) | `3.11.0` | `3.12.1` |
| [sphinxcontrib-mermaid](https://github.com/mgaitan/sphinxcontrib-mermaid) | `2.0.2` | `2.0.3` |
| [apache-airflow](https://github.com/apache/airflow) | `3.2.2` | `3.3.0` |
| [dagster](https://github.com/dagster-io/dagster) | `1.13.10` | `1.13.14` |
| [plotly](https://github.com/plotly/plotly.py) | `6.8.0` | `6.9.0` |
| [tqdm](https://github.com/tqdm/tqdm) | `4.68.3` | `4.68.4` |
| [numpy](https://github.com/numpy/numpy) | `2.4.6` | `2.5.1` |
| [nvidia-cudnn-cu12](https://developer.nvidia.com/cuda-zone) | `9.23.2.1` | `9.24.0.43` |
| [holidays](https://github.com/vacanza/holidays) | `0.99` | `0.100` |
| [scipy](https://github.com/scipy/scipy) | `1.17.1` | `1.18.0` |



Updates `huggingface-hub` from 1.20.1 to 1.23.0
- [Release notes](https://github.com/huggingface/huggingface_hub/releases)
- [Commits](huggingface/huggingface_hub@v1.20.1...v1.23.0)

Updates `poethepoet` from 0.46.0 to 0.48.0
- [Release notes](https://github.com/nat-n/poethepoet/releases)
- [Commits](nat-n/poethepoet@v0.46.0...v0.48.0)

Updates `sigstore` from 4.3.0 to 4.4.0
- [Release notes](https://github.com/sigstore/sigstore-python/releases)
- [Changelog](https://github.com/sigstore/sigstore-python/blob/main/CHANGELOG.md)
- [Commits](sigstore/sigstore-python@v4.3.0...v4.4.0)

Updates `scipy-stubs` from 1.17.1.5 to 1.18.0.1
- [Release notes](https://github.com/scipy/scipy-stubs/releases)
- [Commits](scipy/scipy-stubs@v1.17.1.5...v1.18.0.1)

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

Updates `matplotlib` from 3.11.0 to 3.11.1
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.11.0...v3.11.1)

Updates `pydata-sphinx-theme` from 0.19.0 to 0.20.0
- [Release notes](https://github.com/pydata/pydata-sphinx-theme/releases)
- [Changelog](https://github.com/pydata/pydata-sphinx-theme/blob/main/RELEASE.md)
- [Commits](pydata/pydata-sphinx-theme@v0.19.0...v0.20.0)

Updates `sphinx-autodoc-typehints` from 3.11.0 to 3.12.1
- [Release notes](https://github.com/tox-dev/sphinx-autodoc-typehints/releases)
- [Commits](tox-dev/sphinx-autodoc-typehints@3.11.0...3.12.1)

Updates `sphinxcontrib-mermaid` from 2.0.2 to 2.0.3
- [Changelog](https://github.com/mgaitan/sphinxcontrib-mermaid/blob/master/CHANGELOG.md)
- [Commits](mgaitan/sphinxcontrib-mermaid@2.0.2...2.0.3)

Updates `apache-airflow` from 3.2.2 to 3.3.0
- [Release notes](https://github.com/apache/airflow/releases)
- [Changelog](https://github.com/apache/airflow/blob/main/docker-stack-docs/changelog.rst)
- [Commits](apache/airflow@3.2.2...3.3.0)

Updates `dagster` from 1.13.10 to 1.13.14
- [Release notes](https://github.com/dagster-io/dagster/releases)
- [Changelog](https://github.com/dagster-io/dagster/blob/master/CHANGES.md)
- [Commits](dagster-io/dagster@1.13.10...1.13.14)

Updates `dagster-webserver` from 1.13.10 to 1.13.14
- [Release notes](https://github.com/dagster-io/dagster/releases)
- [Changelog](https://github.com/dagster-io/dagster/blob/master/CHANGES.md)
- [Commits](dagster-io/dagster@1.13.10...1.13.14)

Updates `plotly` from 6.8.0 to 6.9.0
- [Release notes](https://github.com/plotly/plotly.py/releases)
- [Changelog](https://github.com/plotly/plotly.py/blob/main/CHANGELOG.md)
- [Commits](plotly/plotly.py@v6.8.0...v6.9.0)

Updates `tqdm` from 4.68.3 to 4.68.4
- [Release notes](https://github.com/tqdm/tqdm/releases)
- [Commits](tqdm/tqdm@v4.68.3...v4.68.4)

Updates `numpy` from 2.4.6 to 2.5.1
- [Release notes](https://github.com/numpy/numpy/releases)
- [Changelog](https://github.com/numpy/numpy/blob/main/doc/RELEASE_WALKTHROUGH.rst)
- [Commits](numpy/numpy@v2.4.6...v2.5.1)

Updates `nvidia-cudnn-cu12` from 9.23.2.1 to 9.24.0.43

Updates `holidays` from 0.99 to 0.100
- [Release notes](https://github.com/vacanza/holidays/releases)
- [Changelog](https://github.com/vacanza/holidays/blob/dev/CHANGES.md)
- [Commits](vacanza/holidays@v0.99...v0.100)

Updates `scipy` from 1.17.1 to 1.18.0
- [Release notes](https://github.com/scipy/scipy/releases)
- [Commits](scipy/scipy@v1.17.1...v1.18.0)

---
updated-dependencies:
- dependency-name: apache-airflow
  dependency-version: 3.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-versions
- dependency-name: dagster
  dependency-version: 1.13.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-versions
- dependency-name: dagster-webserver
  dependency-version: 1.13.14
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-versions
- dependency-name: holidays
  dependency-version: '0.100'
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-versions
- dependency-name: huggingface-hub
  dependency-version: 1.23.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-versions
- dependency-name: ipython
  dependency-version: 9.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-versions
- dependency-name: matplotlib
  dependency-version: 3.11.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-versions
- dependency-name: numpy
  dependency-version: 2.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-versions
- dependency-name: nvidia-cudnn-cu12
  dependency-version: 9.24.0.43
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-versions
- dependency-name: plotly
  dependency-version: 6.9.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-versions
- dependency-name: poethepoet
  dependency-version: 0.48.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-versions
- dependency-name: pydata-sphinx-theme
  dependency-version: 0.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-versions
- dependency-name: scipy
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-versions
- dependency-name: scipy-stubs
  dependency-version: 1.18.0.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-versions
- dependency-name: sigstore
  dependency-version: 4.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-versions
- dependency-name: sphinx-autodoc-typehints
  dependency-version: 3.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-versions
- dependency-name: sphinxcontrib-mermaid
  dependency-version: 2.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-versions
- dependency-name: tqdm
  dependency-version: 4.68.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-versions
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/uv/python-versions-a7440b2ae2 branch from e91e864 to ad6363d Compare July 22, 2026 04:31
@sonarqubecloud

Copy link
Copy Markdown

@dependabot @github

dependabot Bot commented on behalf of github Jul 24, 2026

Copy link
Copy Markdown
Contributor Author

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

@dependabot dependabot Bot closed this Jul 24, 2026
@dependabot
dependabot Bot deleted the dependabot/uv/python-versions-a7440b2ae2 branch July 24, 2026 04:29
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants