We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a3fc15b commit 50eef90Copy full SHA for 50eef90
.github/workflows/makecode.yml
@@ -27,8 +27,12 @@ jobs:
27
release: 10.3-2021.10
28
- name: Install Yotta, Ninja v1.10 & CMake v3.22 via PyPI
29
if: ${{ matrix.pxt-flags }}
30
- # MarkupSafe < 2.0 needed for Yotta
31
- run: python -m pip install MarkupSafe==1.1.1 ninja==1.10.2.2 cmake==3.22.1 yotta
+ run: |
+ # Newer pip needed to install newer wheels type for cmsis-pack-manager
32
+ python -m pip install --upgrade pip
33
+ # project-generator==0.8.17 and MarkupSafe < 2.0 needed for Yotta
34
+ python -m pip install project-generator==0.8.17 MarkupSafe==1.1.1
35
+ python -m pip install ninja==1.10.2.2 cmake==3.22.1 yotta
36
- name: Install srecord
37
38
run: |
0 commit comments