Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2393966 commit e3e83dbCopy full SHA for e3e83db
.github/workflows/codeql-analysis.yml
@@ -36,9 +36,13 @@ jobs:
36
- name: Install dependencies
37
if: matrix.language != 'javascript'
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
+ python -m pip install --upgrade pip setuptools wheel
+ # TODO: Use pip-tools instead when it supports build-system
+ # 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
46
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV
47
48
- name: Initialize CodeQL
0 commit comments