From b22aa5ac7c0dc248a8dc7b7321e213aad4a530c8 Mon Sep 17 00:00:00 2001 From: "Haoyu (Daniel)" Date: Thu, 12 Sep 2024 20:02:37 +0800 Subject: [PATCH] finally! The day has come when I can run workflows without Janosh looking at every silly mistake I made --- .github/workflows/test.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index e2be1e1b..863b2506 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -29,14 +29,9 @@ jobs: cache: pip cache-dependency-path: pyproject.toml - - name: Install uv - run: pip install uv - - - name: Install dependencies + - name: Install dependencies via uv run: | - uv pip install cython 'setuptools<70' --system - - python setup.py build_ext --inplace + pip install uv uv pip install -e .[test,logging] --system --resolution=${{ matrix.version.resolution }}