Spaces:
Running
Running
Commit
Β·
0fd668c
1
Parent(s):
6354981
fix: π correct Python setup in CI workflow
Browse filesReplaced incorrect setup-uv usage with direct Python 3.12 installation for proper CI configuration.
- .github/workflows/ci.yml +2 -1
.github/workflows/ci.yml
CHANGED
@@ -22,8 +22,9 @@ jobs:
|
|
22 |
- name: Setup Python
|
23 |
uses: astral-sh/setup-uv@v2
|
24 |
with:
|
25 |
-
version: 3.12
|
26 |
enable-cache: true
|
|
|
|
|
27 |
- name: Run
|
28 |
run: |
|
29 |
make run
|
|
|
22 |
- name: Setup Python
|
23 |
uses: astral-sh/setup-uv@v2
|
24 |
with:
|
|
|
25 |
enable-cache: true
|
26 |
+
- name: Install Python 3.12
|
27 |
+
run: uv python install 3.12
|
28 |
- name: Run
|
29 |
run: |
|
30 |
make run
|