File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 89
89
${{ env.img }} \
90
90
bash -exc '${{ env.py }} -m pip install virtualenv && ${{ env.py }} -m venv .env && \
91
91
source .env/bin/activate && \
92
- python -m pip install --upgrade pip wheel setuptools && \
92
+ python -m pip install --upgrade pip wheel setuptools_scm[toml] && \
93
93
python -m pip install -r mypy-requirements.txt -r requirements.txt && \
94
- MYPYPATH=typeshed SCHEMA_SALAD_USE_MYPYC=1 pip install -e .[pycodegen] && \
94
+ MYPYPATH=typeshed SCHEMA_SALAD_USE_MYPYC=1 python -m pip install -e .[pycodegen] && \
95
95
deactivate'
96
96
- name : Test with pytest
97
97
run : |
Original file line number Diff line number Diff line change 19
19
fi
20
20
run_tests=" bin/py.test --pyargs ${module} "
21
21
pipver=20.3.3 # minimum required version of pip for Python 3.10
22
- setuptoolsver=50.0.0 # required for Python 3.10
22
+ setuptoolsver=50.0.1 # required for Python 3.10
23
23
DIR=" $( cd " $( dirname " ${BASH_SOURCE[0]} " ) " > /dev/null && pwd ) "
24
24
25
25
rm -Rf testenv? || /bin/true
You can’t perform that action at this time.
0 commit comments