From e4bc6cbafb42a81edd67417741288c4288ee26b0 Mon Sep 17 00:00:00 2001 From: janbridley Date: Wed, 20 Sep 2023 16:51:34 -0400 Subject: [PATCH] Removed optional dependency install on CI --- .github/workflows/CI.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/CI.yaml b/.github/workflows/CI.yaml index 05bbf4ed..075c31db 100644 --- a/.github/workflows/CI.yaml +++ b/.github/workflows/CI.yaml @@ -37,7 +37,7 @@ jobs: python --version python -c "import numpy; print('numpy', numpy.__version__)" python -c "import scipy; print('scipy', scipy.__version__)" - python -m pip install .[tests] --progress-bar off + python -m pip install . --progress-bar off - name: Test with pytest run: | python -m pytest -v