diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index b3ef429..c6f86e4 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -33,19 +33,10 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Set up Python ${{ matrix.python-version }} - uses: actions/setup-python@v5 - with: - python-version: ${{ matrix.python-version }} - allow-prereleases: true - cache: pip - cache-dependency-path: .github/workflows/test.yml - - name: Install dependencies run: | - python -m pip install -U pip - python -m pip install -U pytest - python -m pip install -U tqdm + pipx run uv pip install --verbose -U pytest + pipx run uv pip install --verbose -U tqdm - name: Test run: |