From 3005b51fbbd028ea59b3c43eee3fd36853b65647 Mon Sep 17 00:00:00 2001 From: Jungtaek Kim Date: Tue, 27 Feb 2024 18:13:32 -0500 Subject: [PATCH] Fix an error for GitHub Actions --- .github/workflows/pytest.yml | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 91d201a..c17eb06 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -21,10 +21,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python -m pip install --upgrade pip setuptools - pip install pytest - pip install scipy + pip install .[dev] - name: Run pytest run: | - pip install . pytest