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

View File

@@ -25,7 +25,7 @@ discord = "https://discord.gg/s3KuuzsPFb"
[project] [project]
name = "lerobot" name = "lerobot"
version = "0.3.0" version = "0.3.1"
description = "🤗 LeRobot: State-of-the-art Machine Learning for Real-World Robotics in Pytorch" description = "🤗 LeRobot: State-of-the-art Machine Learning for Real-World Robotics in Pytorch"
readme = "README.md" readme = "README.md"
license = { text = "Apache-2.0" } license = { text = "Apache-2.0" }