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 @@ -96,7 +96,7 @@ classifiers = [
"Programming Language :: Python :: 3.12",
]
dependencies = [
"torch==2.7.0",
Copy link

Choose a reason for hiding this comment

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

Bug: xformers version incompatible with torch 2.9.1

The xformers==0.0.30 dependency (in both stable-fast and full optional dependencies) explicitly requires torch==2.7.0 and is incompatible with torch 2.9.1. Installing the stable-fast or full extras will fail due to this version constraint conflict.

Additional Locations (2)

Fix in Cursor Fix in Web

Copy link

Choose a reason for hiding this comment

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

Bug: gptqmodel built for torch 2.7, not 2.9

The gptqmodel==4.0.0.dev0+cu126torch2.7 dependency is explicitly built for torch 2.7 (as indicated by torch2.7 in the version string). This package will likely be incompatible with torch 2.9.1, causing the gptq optional dependency installation to fail or produce runtime errors.

Additional Locations (1)

Fix in Cursor Fix in Web

"torch==2.9.1",
"torchvision==0.22.0",
Copy link

Choose a reason for hiding this comment

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

Bug: Incompatible torchvision version with torch 2.9.1

The torch version is being bumped to 2.9.1, but torchvision==0.22.0 remains unchanged. PyTorch and torchvision versions must be synchronized—torchvision 0.22.x is designed for torch 2.7.x, while torch 2.9.x requires torchvision 0.24.x. This mismatch will cause installation conflicts or runtime errors due to incompatible binary dependencies.

Fix in Cursor Fix in Web

"torchmetrics[image]==1.7.4",
"requests>=2.31.0",
Expand Down
Loading