We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 54ac27c commit 1ade942Copy full SHA for 1ade942
.github/workflows/gen-scie-platforms.yml
@@ -63,10 +63,12 @@ jobs:
63
cat << EOF > ./gen-scie-platform.sh
64
#!/usr/bin/env bash
65
66
- curl -LsSf https://astral.sh/uv/install.sh | UV_INSTALL_DIR=.bin sh
67
- source .bin/env
+ curl -LsSf https://astral.sh/uv/install.sh | UV_INSTALL_DIR="\$PWD/.bin" sh
+ export PATH="\$PWD/.bin:\$PATH"
68
+
69
+ uv python update-shell
70
if ! uv python find 3.11; then
- uv python install -i .bin 3.11
71
+ uv python install -i "\$PWD/.bin 3.11
72
fi
73
PYTHON="\$(uv python find 3.11)"
74
0 commit comments