-
Notifications
You must be signed in to change notification settings - Fork 63
Closed
Labels
maintenanceTasks related to infrastructure & dependenciesTasks related to infrastructure & dependencies
Milestone
Description
Error Description
The minimum tests fail with the following error: accelerate 1.3.0 has requirement torch>=2.0.0, but you have torch 1.12.1.
This happens because the realtabformer
dependency installs accelerate>=0.26
, which requires torch>=2.0.0
, while we specify torch>=1.12.1
in pyproject.toml
:
Line 45 in f992575
"torch>=1.12.1;python_version<'3.10'", |
Expected Behavior
Either the appropriate version of accelerate should be installed to pass the minimum tests, or the minimum version of torch
should be increased to 2.0.0
to accommodate the stricter requirements of the accelerate
library.
Metadata
Metadata
Assignees
Labels
maintenanceTasks related to infrastructure & dependenciesTasks related to infrastructure & dependencies