@@ -189,7 +189,7 @@ jobs:
189189 find ./base-dist -name "*.whl" -type f
190190 WHEEL_FILE=$(find ./base-dist -name "*.whl" -type f | head -1)
191191 if [ -n "$WHEEL_FILE" ]; then
192- uv pip install --python ./test-env/Scripts/python.exe "$WHEEL_FILE"
192+ uv pip install --prerelease=allow -- python ./test-env/Scripts/python.exe "$WHEEL_FILE"
193193 else
194194 echo "No wheel file found in ./base-dist/"
195195 exit 1
@@ -231,7 +231,7 @@ jobs:
231231 find ./base-dist -name "*.whl" -type f
232232 WHEEL_FILE=$(find ./base-dist -name "*.whl" -type f | head -1)
233233 if [ -n "$WHEEL_FILE" ]; then
234- uv pip install --python ./test-env/bin/python "$WHEEL_FILE"
234+ uv pip install --prerelease=allow -- python ./test-env/bin/python "$WHEEL_FILE"
235235 else
236236 echo "No wheel file found in ./base-dist/"
237237 exit 1
@@ -475,7 +475,7 @@ jobs:
475475 find ./base-dist -name "*.whl" -type f
476476 WHEEL_FILE=$(find ./base-dist -name "*.whl" -type f | head -1)
477477 if [ -n "$WHEEL_FILE" ]; then
478- uv pip install --python ./test-env/Scripts/python.exe "$WHEEL_FILE"
478+ uv pip install --prerelease=allow -- python ./test-env/Scripts/python.exe "$WHEEL_FILE"
479479 else
480480 echo "No wheel file found in ./base-dist/"
481481 exit 1
@@ -489,7 +489,7 @@ jobs:
489489 find ./main-dist -name "*.whl" -type f
490490 WHEEL_FILE=$(find ./main-dist -name "*.whl" -type f | head -1)
491491 if [ -n "$WHEEL_FILE" ]; then
492- uv pip install --python ./test-env/Scripts/python.exe "$WHEEL_FILE"
492+ uv pip install --prerelease=allow -- python ./test-env/Scripts/python.exe "$WHEEL_FILE"
493493 else
494494 echo "No wheel file found in ./main-dist/"
495495 exit 1
@@ -517,7 +517,7 @@ jobs:
517517 find ./base-dist -name "*.whl" -type f
518518 WHEEL_FILE=$(find ./base-dist -name "*.whl" -type f | head -1)
519519 if [ -n "$WHEEL_FILE" ]; then
520- uv pip install --python ./test-env/bin/python "$WHEEL_FILE"
520+ uv pip install --prerelease=allow -- python ./test-env/bin/python "$WHEEL_FILE"
521521 else
522522 echo "No wheel file found in ./base-dist/"
523523 exit 1
0 commit comments