From 07686fbdd8c1f2c27c2bece38b6f1072f36c58d0 Mon Sep 17 00:00:00 2001 From: Xianqiang Gao Date: Wed, 15 Oct 2025 13:13:39 +0800 Subject: [PATCH 1/2] Update Python version in README for conda setup --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index af9a656..1ca74b3 100644 --- a/README.md +++ b/README.md @@ -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 From 5920dc7998d129215803c994c57173d1aa8bdb0a Mon Sep 17 00:00:00 2001 From: Xianqiang Gao Date: Wed, 15 Oct 2025 13:14:20 +0800 Subject: [PATCH 2/2] Change torch dependency to flexible version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 79c18e2..d4ce381 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -51,7 +51,7 @@ dependencies = [ "pyserial>=3.5", "wandb>=0.20.0", - "torch==2.7.0", + "torch", "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",