From 2be909c07f9f75ffb442281a8fe0804e3bab58ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Fri, 1 Mar 2024 11:54:38 +0100 Subject: [PATCH] fixup! fixup! TST: use uv pip compile to keep minimal deps in sync --- .github/workflows/test.yml | 5 +++-- requirements/dev.txt | 3 +-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 337f721f..1d12237a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -46,7 +46,9 @@ jobs: with: python-version: ${{ matrix.python-version }} - - run: python -m pip install --upgrade pip + - run: | + python -m pip install --upgrade pip + python -m pip install -r requirements/dev.txt - if: matrix.deps == 'minimal' run: | @@ -56,7 +58,6 @@ jobs: - name: Build run: | python -m pip install -e . - python -m pip install -r requirements/dev.txt - run: python -m pip list diff --git a/requirements/dev.txt b/requirements/dev.txt index bc0a5836..5fa57d96 100644 --- a/requirements/dev.txt +++ b/requirements/dev.txt @@ -2,5 +2,4 @@ pyqt5>=5.12 pytest>=4.6.0 pytest-cov pytest-mpl -readme_renderer[md] -viscm>=0.10 +viscm>=0.9