Skip to content

Commit

Permalink
fix: use python version in uv pip install
Browse files Browse the repository at this point in the history
uv does not use python pre-releases by default anymore. Use the same version as setup-python to ensure that we use the same python.
  • Loading branch information
mayeut committed Sep 15, 2024
1 parent d45caba commit c69f4b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ jobs:

- name: Install dependencies
run: |
uv pip install --system ".[test]"
uv pip install --system --python ${{ matrix.python_version }} ".[test]"
- name: Generate a sample project
run: |
Expand Down

0 comments on commit c69f4b8

Please sign in to comment.