File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 36
36
- name : Install dependencies
37
37
if : matrix.language != 'javascript'
38
38
run : |
39
- python -m pip install --upgrade pip pip-tools setuptools wheel
40
- pip-compile -o build-requirements.txt pyproject.toml
41
- pip install -r build-requirements.txt
39
+ python -m pip install --upgrade pip setuptools wheel
40
+ # TODO: Use pip-tools instead when it supports build-system
41
+ # dependencies so we don't need another copy here.
42
+ # https://github.com/jazzband/pip-tools/pull/1681
43
+ python -m pip install --upgrade \
44
+ certifi contourpy cycler fonttools kiwisolver importlib_resources \
45
+ numpy packaging pillow pyparsing python-dateutil setuptools-scm
42
46
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV
43
47
44
48
- name : Initialize CodeQL
You can’t perform that action at this time.
0 commit comments