File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -255,10 +255,13 @@ jobs:
255
255
wget --no-verbose -O gcc-arm.zip https://developer.arm.com/-/media/Files/downloads/gnu/13.2.rel1/binrel/arm-gnu-toolchain-13.2.rel1-mingw-w64-i686-arm-none-eabi.zip
256
256
unzip -q -d /tmp gcc-arm.zip
257
257
tar -C /tmp/arm-gnu-toolchain* -cf - . | tar -C /usr/local -xf -
258
- pip install wheel
259
- # requirements_dev.txt doesn't install on windows. (with msys2 python)
258
+ # We could use a venv instead, but that requires entering the venv on each run step
259
+ # that runs in its own shell. There are some actions that help with that, but not for msys2
260
+ # that I can find. (dhalbert)
261
+ pip install --break-system-packages wheel
262
+ # requirements-dev.txt doesn't install on windows. (with msys2 python)
260
263
# instead, pick a subset for what we want to do
261
- pip install cascadetoml jinja2 typer click intelhex
264
+ pip install --break-system-packages cascadetoml jinja2 typer click intelhex
262
265
# check that installed packages work....?
263
266
which python; python --version; python -c "import cascadetoml"
264
267
which python3; python3 --version; python3 -c "import cascadetoml"
You can’t perform that action at this time.
0 commit comments