Skip to content

Commit

Permalink
fix python version in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
taylormordan committed Sep 28, 2023
1 parent a5c285f commit 92e246e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-guide-dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
- uses: FedericoCarboni/setup-ffmpeg@v2
id: setup-ffmpeg

- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: '3.10'

- name: Install PyTorch without CUDA
run: pip install torch torchvision -i https://download.pytorch.org/whl/cpu
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/deploy-guide.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,10 @@ jobs:
- uses: FedericoCarboni/setup-ffmpeg@v2
id: setup-ffmpeg

- name: Set up Python 3.9
- name: Set up Python 3.10
uses: actions/setup-python@v4
with:
python-version: 3.10
python-version: '3.10'

- name: Install PyTorch without CUDA
run: pip install torch torchvision -i https://download.pytorch.org/whl/cpu
Expand Down

0 comments on commit 92e246e

Please sign in to comment.