8000 fix(ci): Use python3 · shakalaca/llama-cpp-python@b34f200 · GitHub
[go: up one dir, main page]

Skip to content

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

8000
Appearance settings

Commit b34f200

Browse files
committed
fix(ci): Use python3
1 parent 1cd3f2c commit b34f200

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/test.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -126,15 +126,15 @@ jobs:
126126

127127
- name: Install dependencies (Linux/MacOS)
128128
run: |
129-
python -m pip install --upgrade pip
130-
python -m pip install uv
131-
python -m uv pip install -e .[all] --verbose
132-
CMAKE_ARGS="-DLLAMA_METAL=off" python -m uv pip install .[all] --verbose
129+
python3 -m pip install --upgrade pip
130+
python3 -m pip install uv
131+
python3 -m uv pip install -e .[all] --verbose
132+
CMAKE_ARGS="-DLLAMA_METAL=off" python3 -m uv pip install .[all] --verbose
133133
shell: bash
134134

135135
- name: Test with pytest
136136
run: |
137-
python -m pytest
137+
python3 -m pytest
138138
139139
build-macos-metal:
140140
needs: download-model

0 commit comments

Comments
 (0)
0