Skip to content

Commit aa1f51d

Browse files
committed
Remove uv setup in CentOS 7 build, due to venv problems
see astral-sh/uv#8821 for more info. It causes the signing step to fail since that creates its own virtualenv. Signed-off-by: Gary Oberbrunner <[email protected]>
1 parent 051e32c commit aa1f51d

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -215,17 +215,17 @@ jobs:
215215
# Keep this uv code in case we'd like to install python and conan with uv, but for now
216216
# it is not used.
217217

218-
- name: Set up uv manually
219-
if: matrix.release_prefix == 'linux-vfx2021'
220-
run: |
221-
curl -LsSf https://astral.sh/uv/install.sh | sh
222-
source ~/.local/bin/env
223-
echo After sourcing uv env: "$PATH"
224-
uv python install --preview 3.11
225-
# Add symlinks for python3 and python
226-
(cd ~/.local/bin; ln -sf python3.11 python3; ln -sf python3.11 python)
227-
# Save updated path
228-
echo "PATH=$PATH" >> $GITHUB_ENV
218+
# - name: Set up uv manually
219+
# if: matrix.release_prefix == 'linux-vfx2021'
220+
# run: |
221+
# curl -LsSf https://astral.sh/uv/install.sh | sh
222+
# source ~/.local/bin/env
223+
# echo After sourcing uv env: "$PATH"
224+
# uv python install --preview 3.11
225+
# # Add symlinks for python3 and python
226+
# (cd ~/.local/bin; ln -sf python3.11 python3; ln -sf python3.11 python)
227+
# # Save updated path
228+
# echo "PATH=$PATH" >> $GITHUB_ENV
229229

230230
- name: Check python, uv paths
231231
run: |

0 commit comments

Comments
 (0)