Skip to content

Commit 92b1ec3

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents c398cba + 07f8ceb commit 92b1ec3

File tree

2 files changed

+10
-5
lines changed

2 files changed

+10
-5
lines changed

.github/workflows/ports_windows.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,14 @@ on:
55
pull_request:
66
paths:
77
- '.github/workflows/*.yml'
8-
- 'tools/**'
9-
- 'py/**'
108
- 'extmod/**'
119
- 'lib/**'
10+
- 'mpy-cross/**'
1211
- 'ports/unix/**'
1312
- 'ports/windows/**'
13+
- 'py/**'
14+
- 'requirements*.txt'
15+
- 'tools/**'
1416

1517
concurrency:
1618
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
@@ -64,7 +66,8 @@ jobs:
6466
pip install wheel
6567
# requirements_dev.txt doesn't install on windows. (with msys2 python)
6668
# instead, pick a subset for what we want to do
67-
pip install cascadetoml jinja2 typer intelhex
69+
# Undo the pin of typer & click when undoing it in requirements-dev.txt
70+
pip install cascadetoml jinja2 typer==0.4.0 click==8.0.4 intelhex
6871
# check that installed packages work....?
6972
which python; python --version; python -c "import cascadetoml"
7073
which python3; python3 --version; python3 -c "import cascadetoml"

requirements-dev.txt

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ huffman
44
# For nvm.toml
55
cascadetoml
66
jinja2
7-
typer
7+
# Undo this pin when click and typer are again compatible.
8+
typer==0.4.0
89

910
sh
10-
click
11+
# Undo this pin when click and typer are again compatible.
12+
click==8.0.4
1113
cpp-coveralls
1214
requests
1315
requests-cache

0 commit comments

Comments
 (0)