mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-22 06:13:51 -07:00
maybe python3
This commit is contained in:
parent
c069bf2653
commit
655e5a8ffa
1 changed files with 9 additions and 9 deletions
18
.github/workflows/ubuntu.yml
vendored
18
.github/workflows/ubuntu.yml
vendored
|
@ -17,9 +17,9 @@ jobs:
|
||||||
|
|
||||||
- name: Install Python dependencies
|
- name: Install Python dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python3 -m pip install --upgrade pip
|
||||||
python -m pip install ansicolors
|
python3 -m pip install ansicolors
|
||||||
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
|
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
||||||
|
|
||||||
- name: make clean
|
- name: make clean
|
||||||
run: make clean
|
run: make clean
|
||||||
|
@ -48,9 +48,9 @@ jobs:
|
||||||
|
|
||||||
- name: Install Python dependencies
|
- name: Install Python dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python3 -m pip install --upgrade pip
|
||||||
python -m pip install ansicolors
|
python3 -m pip install ansicolors
|
||||||
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
|
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
||||||
|
|
||||||
- name: make clean
|
- name: make clean
|
||||||
run: make clean
|
run: make clean
|
||||||
|
@ -80,9 +80,9 @@ jobs:
|
||||||
|
|
||||||
- name: Install Python dependencies
|
- name: Install Python dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python3 -m pip install --upgrade pip
|
||||||
python -m pip install ansicolors
|
python3 -m pip install ansicolors
|
||||||
if [ -f requirements.txt ]; then python -m pip install -r requirements.txt; fi
|
if [ -f requirements.txt ]; then python3 -m pip install -r requirements.txt; fi
|
||||||
|
|
||||||
- name: Prepare Build Folders
|
- name: Prepare Build Folders
|
||||||
run: mkdir -p client/build
|
run: mkdir -p client/build
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue