Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit e3e83db

Browse files
committed
Revert pip-tools
1 parent 2393966 commit e3e83db

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,9 +36,13 @@ jobs:
3636
- name: Install dependencies
3737
if: matrix.language != 'javascript'
3838
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
4246
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV
4347
4448
- name: Initialize CodeQL

0 commit comments

Comments
 (0)