diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index f7d8418f..8572f5ac 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -52,7 +52,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip wheel install flake8 + pip install wheel flake8 if [ -f requirements-dev.txt ]; then pip install -r requirements-dev.txt; elif [ -f requirements.txt ]; then pip install -r requirements.txt ; fi ####################################################################