Skip to content

Commit 0fb475f

Browse files
committed
print pip version
1 parent 897f0b3 commit 0fb475f

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ports_windows.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,14 +62,15 @@ 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+
which pip; pip --version
66+
which pip3; pip3 --version
6567
pip3 install wheel
6668
# requirements_dev.txt doesn't install on windows. (with msys2 python)
6769
# instead, pick a subset for what we want to do
6870
pip3 install cascadetoml jinja2 typer click intelhex "pc-ble-driver-py >= 0.16.4" "nrfutil > 6.0.0"
6971
# check that installed packages work....?
7072
which python; python --version; python -c "import cascadetoml"
7173
which python3; python3 --version; python3 -c "import cascadetoml"
72-
which pip3; pip3 --version
7374
7475
- name: Set up repository
7576
uses: actions/checkout@v3

0 commit comments

Comments
 (0)