Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ dependencies = [
[project.optional-dependencies]
train = [
"unsloth[colab-new]>=2024.8",
"transformers>=4.40",
"transformers>=5.5.3",
Comment on lines 13 to +14
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Unsloth lower bound may not cover transformers v5 support

unsloth[colab-new]>=2024.8 allows installing unsloth versions from August 2024, but transformers v5 support was only added to unsloth in ~December 2024. A resolver that picks an older compliant unsloth (e.g. 2024.8.x) alongside transformers==5.5.3 will produce an incompatible environment at runtime. Consider tightening the unsloth lower bound to a release known to support transformers v5 (e.g. >=2024.12).

"trl>=0.8",
"torch>=2.0",
"bitsandbytes>=0.43",
Expand Down