File tree Expand file tree Collapse file tree 1 file changed +6
-4
lines changed
Expand file tree Collapse file tree 1 file changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -92,18 +92,20 @@ jobs:
9292 sparse-checkout : ' ${{ matrix.recipe.dir }}'
9393 sparse-checkout-cone-mode : false
9494
95- - name : Install uv
96- uses : astral-sh/setup-uv@v6
95+ # - name: Install uv
96+ # uses: astral-sh/setup-uv@v6
9797
9898 - name : Install dependencies
9999 working-directory : ${{ matrix.recipe.dir }}
100100 #
101101 run : |
102102 if [ -f pyproject.toml ] || [ -f setup.py ]; then
103- uv pip install --system --break-system-packages -e .
103+ # uv pip install --system --break-system-packages -e .
104+ PIP_CONSTRAINT= pip install -e .
104105 echo "Installed ${{ matrix.recipe.dir }} as editable package"
105106 elif [ -f requirements.txt ]; then
106- uv pip install --system --break-system-packages -r requirements.txt
107+ # uv pip install --system --break-system-packages -r requirements.txt
108+ PIP_CONSTRAINT= pip install -r /workspace/requirements.txt
107109 echo "Installed ${{ matrix.recipe.dir }} from requirements.txt"
108110 else
109111 echo "No pyproject.toml, setup.py, or requirements.txt found in ${{ matrix.recipe.dir }}"
You can’t perform that action at this time.
0 commit comments