Skip to content

Commit

Permalink
FIX Python version in hf-integration test (#1038)
Browse files Browse the repository at this point in the history
Explicitly set Python version to 3.11, was using 3.12 by default, which
is not supported by PyTorch.

Also, update versions of checkout and setup-python GitHub actions.
  • Loading branch information
BenjaminBossan authored Dec 13, 2023
1 parent a5dc654 commit 2bb50a3
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/test-hf-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,11 @@ jobs:
timeout-minutes: 10 # took 4 min during testing

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install Requirements
run: |
python -m pip install -r requirements.txt
Expand Down

0 comments on commit 2bb50a3

Please sign in to comment.