From 1141480d205892f99597bf436cdec8f6da5c131a Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Fri, 29 Nov 2024 18:30:43 +0400 Subject: [PATCH] without .venv --- actions/uv/setup/action.yml | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/actions/uv/setup/action.yml b/actions/uv/setup/action.yml index fd1bc61..db28db3 100644 --- a/actions/uv/setup/action.yml +++ b/actions/uv/setup/action.yml @@ -32,11 +32,13 @@ runs: with: python-version: ${{ inputs.python-version || '3.12' }} - - name: Install UV - run: | - pip install uv + #- name: Install UV + # shell: bash + # run: | + # pip install uv - name: Install Dependencies + shell: bash run: | - uv pip install -r requirements.txt --system - uv pip install -e . --system + pip install -r requirements.txt + pip install -e .