maybe python3

This commit is contained in:
iceman1001 2021-02-22 22:28:40 +01:00
parent c069bf2653
commit 655e5a8ffa

View file

@ -17,9 +17,9 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ansicolors
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
python3 -m pip install --upgrade pip
python3 -m pip install ansicolors
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
- name: make clean
run: make clean
@ -48,9 +48,9 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ansicolors
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
python3 -m pip install --upgrade pip
python3 -m pip install ansicolors
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
- name: make clean
run: make clean
@ -80,9 +80,9 @@ jobs:
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip
python -m pip install ansicolors
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
python3 -m pip install --upgrade pip
python3 -m pip install ansicolors
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
- name: Prepare Build Folders
run: mkdir -p client/build