File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -62,13 +62,14 @@ jobs:
62
62
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
63
63
unzip -q -d /tmp gcc-arm.zip
64
64
tar -C /tmp/gcc-arm-none-* -cf - . | tar -C /usr/local -xf -
65
- pip install wheel
65
+ pip3 install wheel
66
66
# requirements_dev.txt doesn't install on windows. (with msys2 python)
67
67
# 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"
69
69
# check that installed packages work....?
70
70
which python; python --version; python -c "import cascadetoml"
71
71
which python3; python3 --version; python3 -c "import cascadetoml"
72
+ which pip3; pip3 --version
72
73
73
74
- name : Set up repository
74
75
uses : actions/checkout@v3
You can’t perform that action at this time.
0 commit comments