[CI/Build] Repair CUDA test dependency updates - #317
Merged
yangzhuxinyzx merged 5 commits intoAug 26, 2026
Merged
Conversation
Bumps [sentence-transformers](https://github.com/huggingface/sentence-transformers) from 5.2.0 to 6.0.0. - [Release notes](https://github.com/huggingface/sentence-transformers/releases) - [Commits](huggingface/sentence-transformers@v5.2.0...v6.0.0) --- updated-dependencies: - dependency-name: sentence-transformers dependency-version: 6.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [pillow](https://github.com/python-pillow/Pillow) from 10.4.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@10.4.0...12.3.0) --- updated-dependencies: - dependency-name: pillow dependency-version: 12.3.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [black](https://github.com/psf/black) from 24.10.0 to 26.5.1. - [Release notes](https://github.com/psf/black/releases) - [Changelog](https://github.com/psf/black/blob/main/CHANGES.md) - [Commits](psf/black@24.10.0...26.5.1) --- updated-dependencies: - dependency-name: black dependency-version: 26.5.1 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Bumps [chardet](https://github.com/chardet/chardet) from 5.2.0 to 7.6.0. - [Release notes](https://github.com/chardet/chardet/releases) - [Changelog](https://github.com/chardet/chardet/blob/main/docs/changelog.rst) - [Commits](chardet/chardet@5.2.0...7.6.0) --- updated-dependencies: - dependency-name: chardet dependency-version: 7.6.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: yangzhuxinyzx <153831768+yangzhuxinyzx@users.noreply.github.com>
This was referenced Aug 26, 2026
yangzhuxinyzx
marked this pull request as ready for review
August 26, 2026 04:24
This was referenced Aug 26, 2026
yangzhuxinyzx
deleted the
codex/v100-dependency-lock-audit-20260826-041357
branch
August 26, 2026 07:55
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Purpose
Audit and safely land the useful dependency updates from #304, #305, and #306 on the latest
mainwithout importing the incompatible chardet update from #307.sentence-transformers5.2.0 -> 6.0.0.pytokensdependency.CrossEncodertest runner to use the supportedmodel_kwargsparameter (valid in both SentenceTransformers 5.2 and 6.0).mbstrdecoder==1.1.3requireschardet>=3.0.4,<6.Audit notes
The original Dependabot PRs changed only one lock line each. Re-resolving the CUDA test lock showed:
pytokens~=0.4.0package.mbstrdecoderdependency and was automatically resolved back to chardet 5.2.0.automodel_argstoCrossEncoder; both SentenceTransformers 5.2 and 6.0 exposemodel_kwargsinstead.Test Plan / Result
uv pip compile requirements/test/cuda.in -c requirements/cuda.txt -o requirements/test/cuda.txt --index-strategy unsafe-best-match --torch-backend cu130 --python-platform x86_64-manylinux_2_28 --python-version 3.12— passed, 316 packages resolved.pytokens==0.4.1— passed.pre-commit run --files requirements/test/cuda.txt tests/conftest.py— all applicable hooks passed.No GPU or end-to-end model test was run.
Supersedes the effective changes of #304, #305, and #306 after merge. #307 should remain open until its parent dependency permits chardet 6+.