From 4fb9a9736f6c42856f3fed3be2a33ef041de26f1 Mon Sep 17 00:00:00 2001 From: Alex Strick van Linschoten Date: Fri, 5 Apr 2024 14:55:54 +0200 Subject: [PATCH] Undo uv commit --- .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 e6a0c61..9940481 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 uv + pip install wheel - name: Install ZenML if: ${{ inputs.ref-zenml != '' }} shell: bash run: | - 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 }}" + 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 }}" - name: Install ZenML if: ${{ inputs.ref-zenml == '' }} shell: bash run: | - uv pip install --system zenml "zenml[server]" + pip install zenml "zenml[server]" - name: Concatenate requirements shell: bash @@ -75,7 +75,7 @@ runs: - name: Install requirements shell: bash run: | - uv pip install --system -r ./local_checkout/all-requirements.txt + pip install -r ./local_checkout/all-requirements.txt - name: Run pytests shell: bash