From f753d25218c7acbc062f4f8ae896b7f37098f926 Mon Sep 17 00:00:00 2001 From: tcely Date: Sat, 17 May 2025 23:00:38 -0400 Subject: [PATCH] Use `uv` to install `pipenv` --- .github/workflows/ci.yaml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 332801e9..54a0d553 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -93,9 +93,8 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python -m pip install --upgrade pip - pip install pipenv uv - PIPENV_VERBOSITY=64 pipenv install --system --skip-lock + python -m pip install uv + PIPENV_VERBOSITY=64 uvx --no-config --no-managed-python -v --from 'pipenv==2022.12.19' pipenv install --system --skip-lock - name: Set up Django environment run: | cp -v -p tubesync/tubesync/local_settings.py.example tubesync/tubesync/local_settings.py