Skip to content

Commit b950c46

Browse files
committed
use pip instead of uv for package installs while we need test.pypi
Signed-off-by: Peter St. John <pstjohn@nvidia.com>
1 parent 6730cd0 commit b950c46

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/unit-tests-recipes.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff 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 }}"

0 commit comments

Comments
 (0)