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
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,10 @@ Repository = "https://github.com/unit8co/darts"
[project.optional-dependencies]
# Main feature sets - pip installable with: pip install "darts[torch]"
torch = [
"torch>=2.0.0",
# torch-2.11 bundled libomp is not compatible with lightgbm 4.6.0 on macOS arm64
# causing segmentation faults.
"torch>=2.0.0,<=2.10; sys_platform == 'darwin' and platform_machine == 'arm64'",
"torch>=2.0.0; sys_platform != 'darwin' or platform_machine != 'arm64'",
"pytorch-lightning>=2.0.0,<2.5.3",
"tensorboardx>=2.1",
"huggingface-hub>=0.35.3",
Expand Down
Loading