Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/nightly-health.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,10 +55,10 @@ jobs:
run: nvidia-smi

- name: Create venv in RUNNER_TEMP
# Python 3.11 is required because the [physicsnemo] extra pulls in
# Python 3.13 is required because the [physicsnemo] extra pulls in
# nvidia-physicsnemo, which requires Python >= 3.11.
run: |
& "C:\Users\saylward\AppData\Local\Programs\Python\Python311\python.exe" -m venv "$env:RUNNER_TEMP\physiotwin4d-venv"
& "C:\actions-runner\python-3.13.14-embed-amd64\python.exe" -m venv "$env:RUNNER_TEMP\physiotwin4d-venv"
Comment thread
aylward marked this conversation as resolved.
echo "$env:RUNNER_TEMP\physiotwin4d-venv\Scripts" >> $env:GITHUB_PATH

- name: Cache uv packages
Expand Down Expand Up @@ -154,10 +154,10 @@ jobs:
# Artifact may be absent if health-tests was cancelled before upload.
continue-on-error: true

- name: Set up Python 3.11
- name: Set up Python 3.13
uses: actions/setup-python@v6
with:
python-version: '3.11'
python-version: '3.13'

- name: Build dashboard
run: |
Expand Down
Loading