Revert "trying python3 and pip3"

This reverts commit 7937fb6ee6.
This commit is contained in:
Arthur Lu 2020-05-18 15:29:51 -05:00
parent 8aa3674ee7
commit 48f821e88b

View File

@ -28,9 +28,9 @@ jobs:
python-version: ${{ matrix.python-version }} python-version: ${{ matrix.python-version }}
- name: Install dependencies - name: Install dependencies
run: | run: |
python3 -m pip3 install --upgrade pip3 python -m pip install --upgrade pip
pip3 install flake8 pytest pip install flake8 pytest
if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
working-directory: ${{ env.working-directory }} working-directory: ${{ env.working-directory }}
- name: Lint with flake8 - name: Lint with flake8
run: | run: |