Skip to content

Commit 6c13790

Browse files
committed
fix python version
1 parent a04b6d2 commit 6c13790

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,9 @@ jobs:
3333
3434
- name: Install dependencies
3535
run: |
36-
uv add --no-sync --dev "${{ join(matrix.packages, '" "') }}"
37-
uv sync --python ${{ matrix.python-version }}
36+
echo "${{ matrix.python-version }}" > .python-version
37+
uv add --dev "${{ join(matrix.packages, '" "') }}"
38+
uv sync
3839
3940
- name: Run tests
4041
run: |

0 commit comments

Comments
 (0)