From 3d5e0aac598c735c25ee25ed5eedcbd49e8d41fe Mon Sep 17 00:00:00 2001 From: Arthur Lu Date: Mon, 18 May 2020 15:29:51 -0500 Subject: [PATCH] Revert "trying python3 and pip3" This reverts commit 7937fb6ee688aff14b9638290fb00cc9ae6bbd6e. --- .github/workflows/ut-analysis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ut-analysis.yml b/.github/workflows/ut-analysis.yml index c3f21447..989adfb2 100644 --- a/.github/workflows/ut-analysis.yml +++ b/.github/workflows/ut-analysis.yml @@ -28,9 +28,9 @@ jobs: python-version: ${{ matrix.python-version }} - name: Install dependencies run: | - python3 -m pip3 install --upgrade pip3 - pip3 install flake8 pytest - if [ -f requirements.txt ]; then pip3 install -r requirements.txt; fi + python -m pip install --upgrade pip + pip install flake8 pytest + if [ -f requirements.txt ]; then pip install -r requirements.txt; fi working-directory: ${{ env.working-directory }} - name: Lint with flake8 run: |