We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5577f5e commit 463006bCopy full SHA for 463006b
.github/workflows/version-bump-prs.yml
@@ -137,8 +137,10 @@ jobs:
137
git checkout -b "$BRANCH"
138
fi
139
140
- # Update versions using uv (--refresh to bypass cache and get fresh PyPI data)
141
- uv add --refresh "openhands-sdk==$VERSION" "openhands-tools==$VERSION"
+ # OpenHands-CLI currently requires Python 3.12, so resolve with that interpreter.
+ uv add --python 3.12 --refresh \
142
+ "openhands-sdk==$VERSION" \
143
+ "openhands-tools==$VERSION"
144
145
# Check if there are changes
146
if git diff --quiet; then
0 commit comments