From c69f4b8a8aebf9ccb9fb9f27c2d7e7dbb99571c2 Mon Sep 17 00:00:00 2001 From: mayeut Date: Sun, 15 Sep 2024 11:12:40 +0200 Subject: [PATCH] fix: use python version in uv pip install 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. --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0888ec7bc..3cf792fc4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -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: |