From bc3ccd7277cc7209db2baa43270e0109ac5d1722 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment=20Robert?= Date: Sat, 6 Apr 2024 09:46:32 +0200 Subject: [PATCH] TST: don't install unused scikit-image in bleeding-edge CI --- .github/workflows/bleeding-edge.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/bleeding-edge.yml b/.github/workflows/bleeding-edge.yml index d5dac310..4c8e6ba7 100644 --- a/.github/workflows/bleeding-edge.yml +++ b/.github/workflows/bleeding-edge.yml @@ -3,7 +3,6 @@ name: CI (bleeding-edge) # - numpy # - matplotlib, # - scipy -# - scikit-image on: push: @@ -33,14 +32,14 @@ jobs: - name: Build run: | python -m pip install --upgrade pip - python -m pip install numpy matplotlib scipy scikit-image --pre \ + python -m pip install numpy matplotlib scipy --pre \ --only-binary ":all:" \ --extra-index \ https://pypi.anaconda.org/scientific-python-nightly-wheels/simple python -m pip install . python -m pip install --requirement requirements/tests.txt + - run: python -m pip list + - name: Run pytest - run: | - python -m pip freeze - pytest --color=yes + run: pytest --color=yes