From 830c482d81a18de16ffac689ee28e4b1ebca82e5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 15:11:25 +0000 Subject: [PATCH 1/2] chore(rye): bump torchvision from 0.22.0 to 0.25.0 Bumps [torchvision](https://github.com/pytorch/vision) from 0.22.0 to 0.25.0. - [Release notes](https://github.com/pytorch/vision/releases) - [Commits](https://github.com/pytorch/vision/compare/v0.22.0...v0.25.0) --- updated-dependencies: - dependency-name: torchvision dependency-version: 0.25.0 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 9af1108..2357138 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -10,7 +10,7 @@ dynamic = ["version"] # https://hatch.pypa.io/latest/config/metadata/#version dependencies = [ "isaacsim[all,extscache]==5.1.0.0", # https://isaac-sim.github.io/IsaacLab/main/source/setup/installation/pip_installation.html#installing-dependencies "torch==2.7.0", - "torchvision==0.22.0", + "torchvision==0.25.0", "isaaclab", "isaaclab-assets", "isaaclab-mimic", @@ -45,7 +45,7 @@ override-dependencies = ["pywin32==306; sys_platform == 'win32'"] # 2. https://docs.astral.sh/uv/concepts/projects/dependencies/#platform-specific-dependencies [tool.uv.sources] -# pip install torch==2.7.0 torchvision==0.22.0 --index-url https://download.pytorch.org/whl/cu128 +# pip install torch==2.7.0 torchvision==0.25.0 --index-url https://download.pytorch.org/whl/cu128 torch = [{ index = "pytorch-cu128" }] torchvision = [{ index = "pytorch-cu128" }] # pip install "isaacsim[all,extscache]==5.1.0.0" --extra-index-url https://pypi.nvidia.com From 5d61361e1809a1eeb22db2a7055743d466cbd801 Mon Sep 17 00:00:00 2001 From: "pre-commit-ci[bot]" <66853113+pre-commit-ci[bot]@users.noreply.github.com> Date: Mon, 26 Jan 2026 15:11:39 +0000 Subject: [PATCH 2/2] =?UTF-8?q?=F0=9F=8E=A8=20[pre-commit.ci]=20Auto=20for?= =?UTF-8?q?mat=20from=20pre-commit.com=20hooks?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- config/extension.toml | 2 +- dev.sh | 10 +++++----- run.sh | 8 ++++---- 3 files changed, 10 insertions(+), 10 deletions(-) diff --git a/config/extension.toml b/config/extension.toml index 15fba91..e5c874d 100644 --- a/config/extension.toml +++ b/config/extension.toml @@ -32,4 +32,4 @@ name = "expt" # TODO: Uncomment and provide path to a ros_ws # with rosdeps to be installed. If none, # leave it commented out. -# ros_ws = "path/from/extension_root/to/ros_ws" \ No newline at end of file +# ros_ws = "path/from/extension_root/to/ros_ws" diff --git a/dev.sh b/dev.sh index 85f570b..795217a 100755 --- a/dev.sh +++ b/dev.sh @@ -49,17 +49,17 @@ run_check() { run_update() { echo "Entering isaaclab submodule..." cd isaaclab || exit - + echo "Fetching tags..." git fetch --tags - + # Get the latest tag LATEST_TAG=$(git tag --sort=-v:refname | head -n 1) echo "Found latest tag: $LATEST_TAG" - + git checkout "$LATEST_TAG" cd .. - + echo "Committing changes to parent repo..." git add isaaclab git commit -m "Update isaaclab submodule to tag $LATEST_TAG" @@ -84,4 +84,4 @@ case "$1" in show_help exit 1 ;; -esac \ No newline at end of file +esac diff --git a/run.sh b/run.sh index d015863..7fb09fb 100755 --- a/run.sh +++ b/run.sh @@ -37,7 +37,7 @@ show_help() { cmd_train() { local TASK="" local RUN_NAME="" - + # Parse arguments specific to training while [[ $# -gt 0 ]]; do case $1 in @@ -144,7 +144,7 @@ cmd_sync() { local LOCAL_PATH="$HOME/DevSpace/IsaacLab-uv/logs/" echo "Starting sync from AutoDL..." - + if ! command -v sshpass &> /dev/null; then echo "Error: sshpass is not installed." exit 1 @@ -160,7 +160,7 @@ cmd_sync() { -e "ssh -p $PORT -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null" \ --exclude '*.tfevents*' \ "root@$HOST:$REMOTE_PATH" "$LOCAL_PATH" - + echo "Sync finished." } @@ -184,4 +184,4 @@ case "$COMMAND" in show_help exit 1 ;; -esac \ No newline at end of file +esac