Skip to content

chore: bump the python-dependencies group across 1 directory with 18 updates#103

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-dependencies-865ecd7b7a
Open

chore: bump the python-dependencies group across 1 directory with 18 updates#103
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-dependencies-865ecd7b7a

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 30, 2026

Copy link
Copy Markdown

Bumps the python-dependencies group with 18 updates in the / directory:

Package From To
huggingface-hub 1.15.0 1.21.0
trimesh 4.11.2 4.12.2
scipy 1.17.0 1.18.0
mujoco 3.9.0 3.10.0
gymnasium 1.2.3 1.3.0
pillow 11.3.0 12.3.0
gradio 6.9.0 6.19.0
plotly 6.6.0 6.8.0
transformers 5.8.1 5.12.1
accelerate 1.13.0 1.14.0
tensorboard 2.20.0 2.21.0
mujoco-warp 3.9.0.1 3.10.0.1
pytest 9.0.2 9.1.1
pytest-cov 7.0.0 7.1.0
hypothesis 6.151.9 6.155.7
ruff 0.15.2 0.15.20
ty 0.0.18 0.0.56
litellm 1.82.0 1.90.2

Updates huggingface-hub from 1.15.0 to 1.21.0

Release notes

Sourced from huggingface-hub's releases.

[v1.21.0] Jobs filtering & pagination

📊 Jobs listing revamped: filter, paginate, and ls instead of ps

The Jobs listing API and CLI have been overhauled with server-side filtering, proper pagination, and a CLI rename that aligns with the rest of hf. list_jobs() now accepts status and labels parameters that push filtering to the server, and returns a lazy iterator (matching list_models, list_datasets, etc.) so large result sets are fetched page by page. On the CLI side, hf jobs ps has been renamed to hf jobs ls for consistency with hf repos ls, hf models ls, and friends — ps and list still work as aliases.

⚠️ Breaking changes:

  • list_jobs() now returns an Iterable[JobInfo] instead of list[JobInfo]. If you indexed the result (jobs[0]), wrap it with list(...).
  • -f/--filter in hf jobs ls is deprecated. Use --status and --label instead. Glob patterns (data-*), negation (key!=value), and filtering by id/image/command are no longer supported.
from huggingface_hub import list_jobs
Filter by status and labels
list_jobs(status=["RUNNING", "SCHEDULING"], labels={"env": "prod"})
Iterate lazily
for job in list_jobs():
print(job.id)
Materialize all results
all_jobs = list(list_jobs())

# Filter by status and labels
hf jobs ls --status running,scheduling --label env=prod --label team=ml
Paginate with --limit
hf jobs ls -a --limit 500
hf jobs ls -a --limit 0  # no limit

  • [Jobs] Add stage/label filtering to list_jobs API and CLI by @​Wauplin in #4395
  • [Jobs] Paginate list_jobs and add --limit to hf jobs ps by @​Wauplin in #4403
  • [CLI] [Jobs] Rename job listing to 'hf jobs ls' (and keep 'hf jobs ps' alias) by @​Wauplin in #4409

📚 Documentation: CLI guide, Jobs guide

🐛 Fix circular import on from huggingface_hub import login

A regression introduced in v1.20.0 caused from huggingface_hub import login to raise an ImportError on a fresh interpreter, due to a circular dependency between _oauth_device and utils._http. The fix moves _oauth_device.py into the utils layer so all imports resolve downward, eliminating the cycle. No lazy imports or workarounds required.

🔧 Other QoL Improvements

📖 Documentation

... (truncated)

Commits
  • aea9b9d Release: v1.21.0
  • 2e2ed56 Release: v1.21.0.rc0
  • 4bd4c90 [CLI] [Jobs] Rename job listing to 'hf jobs ls' (and keep 'hf jobs ps' alias)...
  • fa3eb45 [Jobs] Paginate list_jobs and add --limit to hf jobs ps (#4403)
  • ecfd4c5 [CLI] Fix ty/mypy errors with click 8.4.2 (#4408)
  • 341469f Update hardware flavor enums (automated commit) (#4406)
  • 2fbcdfe [i18n-HI] Add Hindi translation for guides overview (#4405)
  • 5bc6bfa [Jobs] Add stage/label filtering to list_jobs API and CLI (#4395)
  • d991f09 Fix IndexError in filter_repo_objects on an empty pattern (#4402)
  • 0df783f Retry requests on httpx.RemoteProtocolError (#4398)
  • Additional commits viewable in compare view

Updates trimesh from 4.11.2 to 4.12.2

Release notes

Sourced from trimesh's releases.

Release 4.12.2

What's Changed

Full Changelog: mikedh/trimesh@4.12.1...4.12.2

Release 4.12.1

What's Changed

Full Changelog: mikedh/trimesh@4.12.0...4.12.1

Release 4.12.0

What's Changed

New Contributors

Full Changelog: mikedh/trimesh@4.11.5...4.12.0

Release 4.11.5

Release: Fix fill_holes with face attributes (#2518)

Trimesh.fill_holes was adding new faces but haphazardly managing the bookkeeping: it broke len(mesh.faces) == len(mesh.face_attributes[n]) if there were any holes filled.

  • add Trimesh.extend_faces which moves the bookkeeping of "preserve cached face normals to avoid recalculating, pad face colors, pad face attributes" to a generic mesh attribute in the same vein as mesh.update_faces.
  • refactor the tesselation of the holes in repair.fill_holes to use triangulate_quads which implemented the hole filling logic but better. Switch the winding search to a numpy indexing trick for new faces.
  • Have geometry.triangulate_quads use the preexisting util.triangle_fan_to_faces which uses numpy instead of a list comprehension and is heavily used and tested in the codebase.

Also:

  • try to test and fix #2516

... (truncated)

Commits

Updates scipy from 1.17.0 to 1.18.0

Release notes

Sourced from scipy's releases.

SciPy 1.18.0 Release Notes

SciPy 1.18.0 is the culmination of 6 months of hard work. It contains many new features, numerous bug-fixes, improved test coverage and better documentation. There have been a number of deprecations and API changes in this release, which are documented below. All users are encouraged to upgrade to this release, as there are a large number of bug-fixes and optimizations. Before upgrading, we recommend that users check that their own code does not use deprecated SciPy functionality (to do so, run your code with python -Wd and check for DeprecationWarning s). Our development attention will now shift to bug-fix releases on the 1.18.x branch, and on adding new features on the main branch.

This release requires Python 3.12-3.14 and NumPy 2.0.0 or greater.

Highlights of this release

  • SciPy now supports three different build modes for BLAS and LAPACK LP64/ILP64 support, and machinery is provided for downstream cython_lapack consumers to gracefully handle LP64/ILP64 backend builds. ILP64 support has been substantially improved across the SciPy library.
  • Remaining Fortran to C translations have been completed---an experimental Fortran-free build option is now available to developers for testing purposes. Developer feedback is welcome on Fortran-free builds.
  • scipy.signal.whittaker_henderson now provides access to Whittaker-Henderson smoothing of a discrete signal.
  • A large number of scipy.stats functions now support lazy arrays and JAX JIT. Array API support has been improved substantially in SciPy, with at least 21 functions gaining new support in this release. 16 scipy.stats functions have also gained support for MArray input.

New features

scipy.fft improvements

  • SciPy's internal FFT backend has switched from pocketfft to its successor package ducc0.fft, which features several incremental improvements. The most significant of those from SciPy's perspective is probably that storage requirements for internally cached plans have been significantly reduced for most long 1D transforms. Plans that require more storage than 1MB will no longer be cached; this mainly affects huge 1D transforms of prime and near-prime sizes.

scipy.interpolate improvements

... (truncated)

Commits
  • 54ef542 REL: 1.18.0 release commit
  • a45e463 Merge pull request #25395 from tylerjereddy/treddy_prep_1.18.0_final
  • ee2442e TYP, MAINT, TST: PR 25395 revisions
  • 3225154 DOC: PR 25395 revisions
  • 14c7bd7 TYP: Fix mypy errors with pytest==9.1.0 (#25410)
  • 71522e9 DOC: revise SciPy 1.18.0 release notes
  • 92f8482 MAINT: fix errors from pytest 9.1 (#25378)
  • 7b27bf4 TST, MAINT: modernize spatial tests for pytest 10 (#25376)
  • d05b640 Merge pull request #25347 from tylerjereddy/treddy_version_bump_1.18.0rc3
  • e60fe8b REL: set to 1.18.0rc3 unreleased
  • Additional commits viewable in compare view

Updates mujoco from 3.9.0 to 3.10.0

Release notes

Sourced from mujoco's releases.

3.10.0

See the changelog

Changelog

Sourced from mujoco's changelog.

Version 3.10.0 (June 22, 2026)

General ^^^^^^^

  1. Added :ref:mju_threadpool, a new function for creating a thread pool on an mjData instance. When a thread pool is initialized, parts of the simulation pipeline, such as collision detection and constraint solving across islands, are parallelized. The thread pool is automatically destroyed when the mjData is freed.

  2. Added a unified :ref:logging API<siError>:

    • All errors, warnings, and informational messages are now routed through a single :ref:mjfLogHandler callback receiving a structured :ref:mjLogMessage.
    • Users can install a custom handler via :ref:mju_setLogHandler, configure the default handler's behavior (console/file output, topic filtering) via :ref:mju_setLogConfig.
    • Messages can be emitted via :ref:mju_info and :ref:mju_message.
    • New types: :ref:mjtLogLevel, :ref:mjtLogTopic, :ref:mjLogMessage, :ref:mjLogConfig.
    • The legacy callbacks :ref:mju_user_error and :ref:mju_user_warning are deprecated but remain functional.
  3. Added :ref:mjs_numWarnings and :ref:mjs_getWarning for retrieving all warnings accumulated during model compilation and attachment. Deprecated :ref:mjs_isWarning in favor of mjs_numWarnings(s) > 0.

  4. Added the :ref:compiler/conflict<compiler-conflict> attribute for controlling how conflicting global attributes are resolved during :ref:attachment<mjs_attach>. Possible values are "warning" (default: parent values take precedence, warnings emitted on conflicts), "merge" (per-field min/max/error strategy), and "error" (any conflict raises an error). See :ref:Attribute Merging <meAttributeMerging> for details.

    .. admonition:: Future breaking API changes :class: warning

    The current default conflict resolution policy "warn" (ignore the child model) is backward compatible. However, the default policy will change to "merge" in a future release.

  5. Improved primal solver convergence under float32. Improvements initially proposed by :github:user:n3b in :issue:2313 and :github:user:adenzler-nvidia in :doc:MJWarp <mjwarp/index> pull request 1374 <https://github.com/google-deepmind/mujoco_warp/pull/1374>__.

  6. The :ref:CG solver<soAlgorithms> now uses the Hager-Zhang conjugate direction update instead of the Polak-Ribiere-Plus formula. This improves convergence and leads to a significant speedup under float32.

  7. Added :ref:mjs_makeFlex, a new C API function equivalent to the :ref:flexcomp<body-flexcomp> element for programmatically creating flex objects with auto-generated bodies, joints, and equality constraints. Exposed as body.make_flex() in Python.

  8. Added support for loading 1D flex components from OBJ line segments

  9. Significantly improved the quality of coarse convex hulls produced by the :ref:maxhullvert<asset-mesh-maxhullvert> attribute by invoking Qhull's Q9 <http://www.qhull.org/html/qh-optq.htm#Q9>__ option.

    .. admonition:: Breaking API changes :class: attention

    • The header file mjthread.h was removed along with the old engine threading API. |br| Migration: Use :ref:mju_threadpool to set number of worker threads for the engine.
    • Moved island sparse matrix construction from :ref:mj_island (single threaded) into :ref:mj_fwdConstraint (multi-threaded). The island-specific matrices iM, iLD, iefc_J were removed from the arena and are now

... (truncated)

Commits
  • 28009f9 Update changelog for the 3.10.0 release.
  • e2528cb Rename "Stats" window to "Info" and remove "Stats" dock.
  • 4b1320a Patch Abseil to verify compiler support for std::source_location.
  • 1490336 Change LoadModelFromString to return a smart pointer, add MakeData, and updat...
  • 34d142e Force Abseil's SourceLocation implementation for compatibility with clang 13/14.
  • bf59ca6 Make the info overlay position fixed (bottom left)
  • d5db39c Fix various bugs related to value bounds in studio UI.
  • 916695e Fix step timing diagnostics and make compiler errors transient in simulate.
  • 3b08f39 Update dependencies ahead of the 3.10.0 release.
  • 3cb0572 Add MuJoCo Studio icons to the Mac and Windows apps.
  • Additional commits viewable in compare view

Updates gymnasium from 1.2.3 to 1.3.0

Release notes

Sourced from gymnasium's releases.

v1.3.0

Gymnasium v1.3.0

This release brings a new Taxi environment version, a new RepeatAction wrapper, and a range of bug fixes across vector environments and wrappers.

Core Changes

Bug Fixes

Third-Party Environments

10 new community environments have been added to the third-party environments list, including a new Cybersecurity environments section.

Full Changelog: Farama-Foundation/Gymnasium@v1.2.3...v1.3.0

Commits
  • eb5c00e Update to use Taxi-v4
  • 4436f89 fix incorrect TypeVar use in core for RenderFrame (#1560)
  • 877ba30 Update to 1.3.0
  • c3b809f Update Taxi to V4 and fix is_rainy implementation (#1561)
  • 9e6f855 Add RepeatAction wrapper (#1553)
  • 1532e66 Add external environment Hill Climb Racing Env (#1554)
  • df8704c Add boltcrypt to third party environments (#1557)
  • 01c0d39 Add external environment firecastrl (wildfire env) (#1551)
  • 9edc68e Fix spelling in test_mujoco_v5.py (#1550)
  • a31fa4b Change action seed for MuJoCo/test_verify_reward_survive test, to be valid ...
  • Additional commits viewable in compare view

Updates pillow from 11.3.0 to 12.3.0

Release notes

Sourced from pillow's releases.

12.3.0

https://pillow.readthedocs.io/en/stable/releasenotes/12.3.0.html

Removals

Documentation

Dependencies

Testing

... (truncated)

Commits
  • bb1d8e8 12.3.0 version bump
  • e63fc48 Add release notes for SBOM and performance improvements (#9747)
  • 13b701b Add release notes for #9679
  • 5564ca7 List methods
  • a0920fd Speed up ImageChops operations (#9738)
  • 07e9a6c Speed up Image.filter() (#9736)
  • a94578c Speed up Image.getchannel(), Image.merge(), Image.putalpha() and `Image...
  • 53e02c4 Speed up Image.fill(), Image.linear_gradient() and `Image.radial_gradient...
  • af03747 Speed up Image.resample() (#9739)
  • 5c9ca56 Speed up alpha_composite, matrix, negative, quantize (#9740)
  • Additional commits viewable in compare view

Updates gradio from 6.9.0 to 6.19.0

Release notes

Sourced from gradio's releases.

gradio@6.19.0

Features

  • #13526 53cb4ca - Run pnpm lint and pnpm ts:check on CI. Thanks @​abidlabs!
  • #13534 a11c728 - Re-translate i18n choices display names when the language is switched at runtime. Thanks @​hysts!
  • #13524 d4d340d - Run gr.Workflow subgraphs via the Gradio API — each subgraph is exposed as a named endpoint (returning all of its outputs) reusing /info, /call, and /api, with a "View API" panel in the canvas. Thanks @​abidlabs!

Fixes

gradio@6.18.0

Features

Fixes

gradio@6.17.3

Features

gradio@6.16.0

Features

... (truncated)

Changelog

Sourced from gradio's changelog.

6.19.0

Features

  • #13526 53cb4ca - Run pnpm lint and pnpm ts:check on CI. Thanks @​abidlabs!
  • #13534 a11c728 - Re-translate i18n choices display names when the language is switched at runtime. Thanks @​hysts!
  • #13524 d4d340d - Run gr.Workflow subgraphs via the Gradio API — each subgraph is exposed as a named endpoint (returning all of its outputs) reusing /info, /call, and /api, with a "View API" panel in the canvas. Thanks @​abidlabs!

Fixes

6.18.0

Features

Fixes

6.17.3

Features

6.17.2

... (truncated)

...

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 Jun 30, 2026
…updates

Bumps the python-dependencies group with 18 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [huggingface-hub](https://github.com/huggingface/huggingface_hub) | `1.15.0` | `1.21.0` |
| [trimesh](https://github.com/mikedh/trimesh) | `4.11.2` | `4.12.2` |
| [scipy](https://github.com/scipy/scipy) | `1.17.0` | `1.18.0` |
| [mujoco](https://github.com/google-deepmind/mujoco) | `3.9.0` | `3.10.0` |
| [gymnasium](https://github.com/Farama-Foundation/Gymnasium) | `1.2.3` | `1.3.0` |
| [pillow](https://github.com/python-pillow/Pillow) | `11.3.0` | `12.3.0` |
| [gradio](https://github.com/gradio-app/gradio) | `6.9.0` | `6.19.0` |
| [plotly](https://github.com/plotly/plotly.py) | `6.6.0` | `6.8.0` |
| [transformers](https://github.com/huggingface/transformers) | `5.8.1` | `5.12.1` |
| [accelerate](https://github.com/huggingface/accelerate) | `1.13.0` | `1.14.0` |
| [tensorboard](https://github.com/tensorflow/tensorboard) | `2.20.0` | `2.21.0` |
| [mujoco-warp](https://github.com/google-deepmind/mujoco_warp) | `3.9.0.1` | `3.10.0.1` |
| [pytest](https://github.com/pytest-dev/pytest) | `9.0.2` | `9.1.1` |
| [pytest-cov](https://github.com/pytest-dev/pytest-cov) | `7.0.0` | `7.1.0` |
| [hypothesis](https://github.com/HypothesisWorks/hypothesis) | `6.151.9` | `6.155.7` |
| [ruff](https://github.com/astral-sh/ruff) | `0.15.2` | `0.15.20` |
| [ty](https://github.com/astral-sh/ty) | `0.0.18` | `0.0.56` |
| [litellm](https://github.com/BerriAI/litellm) | `1.82.0` | `1.90.2` |



Updates `huggingface-hub` from 1.15.0 to 1.21.0
- [Release notes](https://github.com/huggingface/huggingface_hub/releases)
- [Commits](huggingface/huggingface_hub@v1.15.0...v1.21.0)

Updates `trimesh` from 4.11.2 to 4.12.2
- [Release notes](https://github.com/mikedh/trimesh/releases)
- [Commits](mikedh/trimesh@4.11.2...4.12.2)

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

Updates `mujoco` from 3.9.0 to 3.10.0
- [Release notes](https://github.com/google-deepmind/mujoco/releases)
- [Changelog](https://github.com/google-deepmind/mujoco/blob/main/doc/changelog.rst)
- [Commits](google-deepmind/mujoco@3.9.0...3.10.0)

Updates `gymnasium` from 1.2.3 to 1.3.0
- [Release notes](https://github.com/Farama-Foundation/Gymnasium/releases)
- [Commits](Farama-Foundation/Gymnasium@v1.2.3...v1.3.0)

Updates `pillow` from 11.3.0 to 12.3.0
- [Release notes](https://github.com/python-pillow/Pillow/releases)
- [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst)
- [Commits](python-pillow/Pillow@11.3.0...12.3.0)

Updates `gradio` from 6.9.0 to 6.19.0
- [Release notes](https://github.com/gradio-app/gradio/releases)
- [Changelog](https://github.com/gradio-app/gradio/blob/main/CHANGELOG.md)
- [Commits](https://github.com/gradio-app/gradio/compare/gradio@6.9.0...gradio@6.19.0)

Updates `plotly` from 6.6.0 to 6.8.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.6.0...v6.8.0)

Updates `transformers` from 5.8.1 to 5.12.1
- [Release notes](https://github.com/huggingface/transformers/releases)
- [Commits](huggingface/transformers@v5.8.1...v5.12.1)

Updates `accelerate` from 1.13.0 to 1.14.0
- [Release notes](https://github.com/huggingface/accelerate/releases)
- [Commits](huggingface/accelerate@v1.13.0...v1.14.0)

Updates `tensorboard` from 2.20.0 to 2.21.0
- [Release notes](https://github.com/tensorflow/tensorboard/releases)
- [Changelog](https://github.com/tensorflow/tensorboard/blob/master/RELEASE.md)
- [Commits](tensorflow/tensorboard@2.20.0...2.21.0)

Updates `mujoco-warp` from 3.9.0.1 to 3.10.0.1
- [Release notes](https://github.com/google-deepmind/mujoco_warp/releases)
- [Commits](google-deepmind/mujoco_warp@v3.9.0.1...v3.10.0.1)

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

Updates `pytest-cov` from 7.0.0 to 7.1.0
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v7.0.0...v7.1.0)

Updates `hypothesis` from 6.151.9 to 6.155.7
- [Release notes](https://github.com/HypothesisWorks/hypothesis/releases)
- [Commits](HypothesisWorks/hypothesis@hypothesis-python-6.151.9...v6.155.7)

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

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

Updates `litellm` from 1.82.0 to 1.90.2
- [Release notes](https://github.com/BerriAI/litellm/releases)
- [Commits](https://github.com/BerriAI/litellm/commits)

---
updated-dependencies:
- dependency-name: accelerate
  dependency-version: 1.14.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: gradio
  dependency-version: 6.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: gymnasium
  dependency-version: 1.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: huggingface-hub
  dependency-version: 1.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: hypothesis
  dependency-version: 6.155.7
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: litellm
  dependency-version: 1.90.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: mujoco
  dependency-version: 3.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: mujoco-warp
  dependency-version: 3.10.0.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pillow
  dependency-version: 12.2.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: python-dependencies
- dependency-name: plotly
  dependency-version: 6.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pytest
  dependency-version: 9.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: pytest-cov
  dependency-version: 7.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: ruff
  dependency-version: 0.15.20
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-dependencies
- dependency-name: scipy
  dependency-version: 1.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: tensorboard
  dependency-version: 2.21.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: transformers
  dependency-version: 5.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: trimesh
  dependency-version: 4.12.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-dependencies
- dependency-name: ty
  dependency-version: 0.0.55
  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 force-pushed the dependabot/uv/python-dependencies-865ecd7b7a branch from 51aad15 to 983e4ce Compare July 2, 2026 03:17
@dependabot @github

dependabot Bot commented on behalf of github Jul 2, 2026

Copy link
Copy Markdown
Author

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

3 similar comments
@dependabot @github

dependabot Bot commented on behalf of github Jul 5, 2026

Copy link
Copy Markdown
Author

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

@dependabot @github

dependabot Bot commented on behalf of github Jul 6, 2026

Copy link
Copy Markdown
Author

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

@dependabot @github

dependabot Bot commented on behalf of github Jul 13, 2026

Copy link
Copy Markdown
Author

Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting @dependabot recreate.

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