From 1c80578fef5cb2bdcd6e6a14fd47aac81546a4ef Mon Sep 17 00:00:00 2001 From: A_D Date: Wed, 9 Dec 2020 19:33:56 +0200 Subject: [PATCH] Fixed backwards pip install command --- .github/workflows/pr-checks.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 ####################################################################