fix(ci): remove uv run + bump minor (#1651)

This commit is contained in:
Steven Palma
2025-08-01 20:52:10 +02:00
committed by GitHub
parent 3e24ecaf54
commit 240a3892ae
2 changed files with 4 additions and 3 deletions

View File

@@ -148,13 +148,14 @@ jobs:
if [[ "$VERSION" == *-* ]]; then
BASE_VERSION="${VERSION%%-*}"
echo "Installing pre-release version $BASE_VERSION from TestPyPI..."
uv run pip install \
uv pip install \
--index-url https://test.pypi.org/simple/ \
--extra-index-url https://pypi.org/simple \
--index-strategy unsafe-best-match \
"lerobot[all]==$BASE_VERSION"
else
echo "Installing release version $VERSION from PyPI..."
uv run pip install "lerobot[all]==$VERSION"
uv pip install "lerobot[all]==$VERSION"
fi
- name: Check lerobot version
run: uv run python -c "import lerobot; print(lerobot.__version__)"