-
Notifications
You must be signed in to change notification settings - Fork 105
RHAIENG-540: build(deps): bump transformers from 4.52.4 to 4.53.0 in /jupyter/trustyai/ubi9-python-3.11 and to 4.55.0 in the 3.12 version of workbench #1755
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -17,7 +17,7 @@ torch = {version = "==2.6.0+cu126", index = "pytorch"} | |
# More information available at: | ||
# - https://pypi.org/project/trustyai/ | ||
# - https://github.com/trustyai-explainability/trustyai-explainability-python/blob/main/requirements.txt | ||
transformers = "~=4.52.1" | ||
transformers = "~=4.55.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Verification agent 🧩 Analysis chainTransformers bump to ~=4.55.0 for py312 is appropriate and consistent with the py312 imagestream (4.55). No issues spotted with Torch 2.6.0; good to keep py311 and py312 diverged here. Quick consistency check: 🏁 Script executed: #!/bin/bash
set -euo pipefail
echo "Pipfile pin:"
sed -n '1,80p' jupyter/trustyai/ubi9-python-3.12/Pipfile | rg '^\s*transformers\s*=' -n
echo "Pipfile.lock resolved version:"
jq -r '.default.transformers.version // .develop.transformers.version' jupyter/trustyai/ubi9-python-3.12/Pipfile.lock
echo "Imagestream (py312 overlay) shows major.minor 4.55:"
rg -n '"Transformers", "version": "4\.55"' manifests/overlays/additional/jupyter-trustyai-cpu-py312-ubi9-imagestream.yaml Length of output: 668 Update Pipfile.lock to match Transformers bump The Pipfile specifies
Please regenerate or update the lock file (e.g., run 🤖 Prompt for AI Agents
|
||
datasets = "~=3.4.1" | ||
accelerate = "~=1.5.2" | ||
trustyai = "~=0.6.2" | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Verification agent
🧩 Analysis chain
Transformers bump to ~=4.53.3 looks good and matches imagestream (major.minor 4.53).
Aligned with project conventions and prior TrustyAI assessments; no obvious compatibility flags with Torch 2.6.0. Ensure lockfile and build reflect this.
Run to verify consistency across Pipfile.lock and imagestream:
🏁 Script executed:
Length of output: 704
Fix Pipfile.lock to Resolve Transformers Bump
The Pipfile correctly pins
transformers = "~=4.53.3"
, and the imagestream manifest shows the expected major.minor4.53
. However, your Pipfile.lock is still resolving Transformers to==4.52.4
. Please update the lockfile so it reflects the bump to4.53.x
.• Pipfile (line 20):
transformers = "~=4.53.3"
• Pipfile.lock (currently):
default.transformers.version == 4.52.4
• Imagestream manifest (manifests/base/jupyter-trustyai-notebook-imagestream.yaml):
{"name": "Transformers", "version": "4.53"},
Action required:
pipenv lock
(or the equivalent command) to re-resolve dependencies.transformers
at>=4.53.3,<4.54.0
.This will ensure your build and deployments use the intended Transformers version.
🤖 Prompt for AI Agents