From f771e3eaf1b30aae65768513b2e67d351f5f6c2f Mon Sep 17 00:00:00 2001 From: Steven Palma Date: Fri, 1 Aug 2025 21:04:47 +0200 Subject: [PATCH] fix(ci): create venv for release testing (#1652) --- .github/workflows/release.yml | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b6ac0fcb..67aa5186 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -141,6 +141,8 @@ jobs: enable-cache: true version: ${{ env.UV_VERSION }} python-version: ${{ env.PYTHON_VERSION }} + - name: Create uv virtual environment + run: uv venv - name: Install lerobot release # zizmor: ignore[template-injection] run: | diff --git a/pyproject.toml b/pyproject.toml index 8984f67b..7e737ddc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -25,7 +25,7 @@ discord = "https://discord.gg/s3KuuzsPFb" [project] name = "lerobot" -version = "0.3.1" +version = "0.3.2" description = "🤗 LeRobot: State-of-the-art Machine Learning for Real-World Robotics in Pytorch" readme = "README.md" license = { text = "Apache-2.0" }