File tree Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Expand file tree Collapse file tree 2 files changed +10
-5
lines changed Original file line number Diff line number Diff line change 5
5
pull_request :
6
6
paths :
7
7
- ' .github/workflows/*.yml'
8
- - ' tools/**'
9
- - ' py/**'
10
8
- ' extmod/**'
11
9
- ' lib/**'
10
+ - ' mpy-cross/**'
12
11
- ' ports/unix/**'
13
12
- ' ports/windows/**'
13
+ - ' py/**'
14
+ - ' requirements*.txt'
15
+ - ' tools/**'
14
16
15
17
concurrency :
16
18
group : ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
64
66
pip install wheel
65
67
# requirements_dev.txt doesn't install on windows. (with msys2 python)
66
68
# 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
68
71
# check that installed packages work....?
69
72
which python; python --version; python -c "import cascadetoml"
70
73
which python3; python3 --version; python3 -c "import cascadetoml"
Original file line number Diff line number Diff line change @@ -4,10 +4,12 @@ huffman
4
4
# For nvm.toml
5
5
cascadetoml
6
6
jinja2
7
- typer
7
+ # Undo this pin when click and typer are again compatible.
8
+ typer == 0.4.0
8
9
9
10
sh
10
- click
11
+ # Undo this pin when click and typer are again compatible.
12
+ click == 8.0.4
11
13
cpp-coveralls
12
14
requests
13
15
requests-cache
You can’t perform that action at this time.
0 commit comments