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.
uv
1 parent def1e35 commit 6b70832Copy full SHA for 6b70832
.github/workflows/build.yml
@@ -193,10 +193,20 @@ jobs:
193
194
- name: Set up python 3.11
195
uses: actions/setup-python@v5
196
- if: matrix.ostype == 'mac' || matrix.release_prefix == 'linux-vfx2021'
+ if: matrix.ostype == 'mac'
197
with:
198
python-version: '3.11'
199
200
+ - name: Set up python 3.11 with `uv`
201
+ if: matrix.release_prefix == 'linux-vfx2021'
202
+ run: |
203
+ curl -LsSf https://astral.sh/uv/install.sh | sh
204
+ uv venv /opt/venv --python 3.11
205
+ # add to PATH
206
+ PATH=$PATH:/opt/venv/bin
207
+ echo "/opt/venv/bin" >> $GITHUB_PATH
208
+ which python
209
+
210
- name: Install Conan
211
id: conan
212
uses: turtlebrowser/get-conan@main
0 commit comments