Merge pull request #6211 from dhalbert/7.2.x-6210-backport
backport click and typer pins #6210 to 7.2.x
This commit is contained in:
commit
cf127df560
9
.github/workflows/ports_windows.yml
vendored
9
.github/workflows/ports_windows.yml
vendored
@ -5,12 +5,14 @@ on:
|
|||||||
pull_request:
|
pull_request:
|
||||||
paths:
|
paths:
|
||||||
- '.github/workflows/*.yml'
|
- '.github/workflows/*.yml'
|
||||||
- 'tools/**'
|
|
||||||
- 'py/**'
|
|
||||||
- 'extmod/**'
|
- 'extmod/**'
|
||||||
- 'lib/**'
|
- 'lib/**'
|
||||||
|
- 'mpy-cross/**'
|
||||||
- 'ports/unix/**'
|
- 'ports/unix/**'
|
||||||
- 'ports/windows/**'
|
- 'ports/windows/**'
|
||||||
|
- 'py/**'
|
||||||
|
- 'requirements*.txt'
|
||||||
|
- 'tools/**'
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||||
@ -64,7 +66,8 @@ jobs:
|
|||||||
pip install wheel
|
pip install wheel
|
||||||
# requirements_dev.txt doesn't install on windows. (with msys2 python)
|
# requirements_dev.txt doesn't install on windows. (with msys2 python)
|
||||||
# instead, pick a subset for what we want to do
|
# instead, pick a subset for what we want to do
|
||||||
pip install cascadetoml jinja2 typer intelhex
|
# Undo the pin of typer & click when undoing it in requirements-dev.txt
|
||||||
|
pip install cascadetoml jinja2 typer==0.4.0 click==8.0.4 intelhex
|
||||||
# check that installed packages work....?
|
# check that installed packages work....?
|
||||||
which python; python --version; python -c "import cascadetoml"
|
which python; python --version; python -c "import cascadetoml"
|
||||||
which python3; python3 --version; python3 -c "import cascadetoml"
|
which python3; python3 --version; python3 -c "import cascadetoml"
|
||||||
|
@ -4,10 +4,12 @@ huffman
|
|||||||
# For nvm.toml
|
# For nvm.toml
|
||||||
cascadetoml
|
cascadetoml
|
||||||
jinja2
|
jinja2
|
||||||
typer
|
# Undo this pin when click and typer are again compatible.
|
||||||
|
typer==0.4.0
|
||||||
|
|
||||||
sh
|
sh
|
||||||
click
|
# Undo this pin when click and typer are again compatible.
|
||||||
|
click==8.0.4
|
||||||
cpp-coveralls
|
cpp-coveralls
|
||||||
requests
|
requests
|
||||||
requests-cache
|
requests-cache
|
||||||
|
Loading…
x
Reference in New Issue
Block a user