From: Daniel Feldroy Date: Mon, 21 Sep 2020 17:33:36 +0000 (-0700) Subject: Removing unnecessary logic X-Git-Tag: 1.5.2~12 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=97d2aaf4b212aca7a95e3be58f9d5bf53ad35943;p=cached-property.git Removing unnecessary logic I know there is a `requirements.txt` file, I don't need to check for it. --- diff --git a/.github/workflows/python-package.yml b/.github/workflows/python-package.yml index 4d42aae..ffe5988 100644 --- a/.github/workflows/python-package.yml +++ b/.github/workflows/python-package.yml @@ -31,7 +31,7 @@ jobs: run: | python -m pip install --upgrade pip pip install flake8 pytest - if [ -f requirements.txt ]; then pip install -r requirements.txt; fi + pip install -r requirements.txt - name: Lint with flake8 run: | # stop the build if there are Python syntax errors or undefined names