Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

FIX Python version in hf-integration test #1038

Merged
merged 1 commit into from
Dec 13, 2023
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
FIX Python version in hf-integration test
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 committed Dec 13, 2023
commit 65bcee17619a45cac1e9e8d02f9308ad02ac5b69
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