Skip to content

Commit 897f0b3

Browse files
committed
Use pip3
1 parent e4ad19a commit 897f0b3

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/ports_windows.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,14 @@ jobs:
6262
wget --no-verbose -O gcc-arm.zip https://developer.arm.com/-/media/Files/downloads/gnu-rm/10-2020q4/gcc-arm-none-eabi-10-2020-q4-major-win32.zip
6363
unzip -q -d /tmp gcc-arm.zip
6464
tar -C /tmp/gcc-arm-none-* -cf - . | tar -C /usr/local -xf -
65-
pip install wheel
65+
pip3 install wheel
6666
# requirements_dev.txt doesn't install on windows. (with msys2 python)
6767
# instead, pick a subset for what we want to do
68-
pip install cascadetoml jinja2 typer click intelhex "pc-ble-driver-py >= 0.16.4" "nrfutil > 6.0.0"
68+
pip3 install cascadetoml jinja2 typer click intelhex "pc-ble-driver-py >= 0.16.4" "nrfutil > 6.0.0"
6969
# check that installed packages work....?
7070
which python; python --version; python -c "import cascadetoml"
7171
which python3; python3 --version; python3 -c "import cascadetoml"
72+
which pip3; pip3 --version
7273
7374
- name: Set up repository
7475
uses: actions/checkout@v3

0 commit comments

Comments
 (0)