From 0417b14e7d124e217e3988416bcb45fb0c4f968a Mon Sep 17 00:00:00 2001 From: Alex Strick van Linschoten Date: Fri, 5 Apr 2024 14:54:50 +0200 Subject: [PATCH] use uv --- .github/actions/starter_template_test/action.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/actions/starter_template_test/action.yml b/.github/actions/starter_template_test/action.yml index 9940481..e6a0c61 100644 --- a/.github/actions/starter_template_test/action.yml +++ b/.github/actions/starter_template_test/action.yml @@ -52,19 +52,19 @@ runs: - name: Install wheel shell: bash run: | - pip install wheel + pip install wheel uv - name: Install ZenML if: ${{ inputs.ref-zenml != '' }} shell: bash run: | - pip install "git+https://github.com/zenml-io/zenml.git@${{ inputs.ref-zenml }}" "zenml[server]@git+https://github.com/zenml-io/zenml.git@${{ inputs.ref-zenml }}" + uv pip install --system "git+https://github.com/zenml-io/zenml.git@${{ inputs.ref-zenml }}" "zenml[server]@git+https://github.com/zenml-io/zenml.git@${{ inputs.ref-zenml }}" - name: Install ZenML if: ${{ inputs.ref-zenml == '' }} shell: bash run: | - pip install zenml "zenml[server]" + uv pip install --system zenml "zenml[server]" - name: Concatenate requirements shell: bash @@ -75,7 +75,7 @@ runs: - name: Install requirements shell: bash run: | - pip install -r ./local_checkout/all-requirements.txt + uv pip install --system -r ./local_checkout/all-requirements.txt - name: Run pytests shell: bash