Skip to content

Commit c9566e1

Browse files
author
Jonas Heinle
committed
removed calls to uv in home
1 parent 9d9a94c commit c9566e1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/Linux.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -162,26 +162,26 @@ jobs:
162162
######################################## Build docs #############################################################
163163
#################################################################################################################
164164

165+
# . "$HOME/.local/bin/env"
165166
- name: Set Astral UV venv
166167
if: ${{ matrix.compiler == 'clang' && inputs.runner == 'ubuntu-24.04' }}
167168
run: |
168-
. "$HOME/.local/bin/env"
169169
uv venv
170170
working-directory: ${{ github.workspace }}
171171

172172
# You can test your matrix by printing the current Python version
173+
# . "$HOME/.local/bin/env"
173174
- name: Setup python env
174175
if: ${{ matrix.compiler == 'clang' && inputs.runner == 'ubuntu-24.04' }}
175176
run: |
176-
. "$HOME/.local/bin/env"
177177
. ".venv/bin/activate"
178178
uv pip install -r requirements.txt
179179
working-directory: ${{ github.workspace }}
180180

181+
# . "$HOME/.local/bin/env"
181182
- name: Build web page
182183
if: ${{ matrix.compiler == 'clang' && inputs.runner == 'ubuntu-24.04' }}
183184
run: |
184-
. "$HOME/.local/bin/env"
185185
cp ${{ env.DOCS_OUT }}/*.svg ./docs/source/_static
186186
cd docs/source
187187
uv run python graphviz_generator.py

0 commit comments

Comments
 (0)