Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion openhands/automation/presets/plugin/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ if [ -z "$SDK_VERSION" ]; then
fi

echo "[setup] Creating isolated virtual environment"
uv venv .venv --quiet
# Pin >=3.12 so uv doesn't default to an older system Python (e.g. macOS
# CommandLineTools 3.9), which can't satisfy openhands-sdk's requires-python.
uv venv .venv --python '>=3.12' --quiet

echo "[setup] Installing OpenHands SDK from PyPI (version: $SDK_VERSION)"
uv pip install --quiet \
Expand Down
4 changes: 3 additions & 1 deletion openhands/automation/presets/prompt/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ if [ -z "$SDK_VERSION" ]; then
fi

echo "[setup] Creating isolated virtual environment"
uv venv .venv --quiet
# Pin >=3.12 so uv doesn't default to an older system Python (e.g. macOS
# CommandLineTools 3.9), which can't satisfy openhands-sdk's requires-python.
uv venv .venv --python '>=3.12' --quiet

echo "[setup] Installing OpenHands SDK from PyPI (version: $SDK_VERSION)"
uv pip install --quiet \
Expand Down
Loading