8000 Try pip-compile for automatic dependencies · matplotlib/matplotlib@2393966 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2393966

Browse files
committed
Try pip-compile for automatic dependencies
1 parent 0712492 commit 2393966

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,10 +36,9 @@ jobs:
3636
- name: Install dependencies
3737
if: matrix.language != 'javascript'
3838
run: |
39-
python -m pip install --upgrade pip setuptools wheel
40-
python -m pip install --upgrade \
41-
certifi contourpy cycler fonttools kiwisolver importlib_resources \
42-
numpy packaging pillow pyparsing python-dateutil setuptools-scm
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
4342
echo "CODEQL_PYTHON=$(which python)" >> $GITHUB_ENV
4443
4544
- name: Initialize CodeQL

0 commit comments

Comments
 (0)
0