Skip to content
This repository was archived by the owner on Nov 12, 2025. It is now read-only.
Open
Show file tree
Hide file tree
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ Create a conda environment and install dependencies:

```bash
# create conda environment
conda create -n eo python=3.10
conda create -n eo python=3.11
conda activate eo
pip install --upgrade setuptools

Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ dependencies = [
"pyserial>=3.5",
"wandb>=0.20.0",

"torch==2.7.0",
"torch",
Copy link

Copilot AI Oct 15, 2025

Choose a reason for hiding this comment

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

Removing the version constraint for torch could lead to compatibility issues. Consider using a minimum version constraint like 'torch>=2.0.0' to ensure compatibility while maintaining flexibility.

Suggested change
"torch",
"torch>=2.0.0",

Copilot uses AI. Check for mistakes.
"torchcodec>=0.2.1; sys_platform != 'win32' and (sys_platform != 'linux' or (platform_machine != 'aarch64' and platform_machine != 'arm64' and platform_machine != 'armv7l')) and (sys_platform != 'darwin' or platform_machine != 'x86_64')",
"torchvision>=0.21.0",

Expand Down