diff --git a/install_dev.py b/install_dev.py index 5cf313ff..91387c64 100644 --- a/install_dev.py +++ b/install_dev.py @@ -5,21 +5,21 @@ def install_torch_nightly_deps(): """Install torch related dependencies from pinned nightly""" - EXECUTORCH_NIGHTLY_VERSION = "dev20250625" - TORCHAO_NIGHTLY_VERSION = "dev20250620" + EXECUTORCH_NIGHTLY_VERSION = "dev20250801" + TORCHAO_NIGHTLY_VERSION = "dev20250801" # Torch nightly is aligned with pinned nightly in https://github.com/pytorch/executorch/blob/main/install_requirements.py#L74 - TORCH_NIGHTLY_VERSION = "dev20250601" + TORCH_NIGHTLY_VERSION = "dev20250801" subprocess.check_call( [ sys.executable, "-m", "pip", "install", - f"executorch==0.7.0.{EXECUTORCH_NIGHTLY_VERSION}", - f"torch==2.8.0.{TORCH_NIGHTLY_VERSION}", - f"torchvision==0.23.0.{TORCH_NIGHTLY_VERSION}", + f"executorch==0.8.0.{EXECUTORCH_NIGHTLY_VERSION}", + f"torch==2.9.0.{TORCH_NIGHTLY_VERSION}", + f"torchvision==0.24.0.{TORCH_NIGHTLY_VERSION}", f"torchaudio==2.8.0.{TORCH_NIGHTLY_VERSION}", - f"torchao==0.12.0.{TORCHAO_NIGHTLY_VERSION}", + f"torchao==0.13.0.{TORCHAO_NIGHTLY_VERSION}", "--extra-index-url", "https://download.pytorch.org/whl/nightly/cpu", ]