Skip to content

Commit 1c4e34a

Browse files
authored
fix(ci): temporarily ignore GHSA-4xh5-x5gv-qwph (CVE-2025-8869) until pip fixes the problem (#1018)
1 parent a43ce40 commit 1c4e34a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Makefile

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,13 +141,14 @@ requirements.txt: pyproject.toml
141141
# Audit the currently installed packages. Skip packages that are installed in
142142
# editable mode (like the one in development here) because they may not have
143143
# a PyPI entry; also print out CVE description and potential fixes if audit
144-
# found an issue.
144+
# found an issue. Note that we temporarily ignore GHSA-4xh5-x5gv-qwph until the
145+
# issue is resolved: https://github.com/pypa/pip/issues/13607
145146
.PHONY: audit
146147
audit:
147148
if ! $$(python -c "import pip_audit" &> /dev/null); then \
148149
echo "No package pip_audit installed, upgrade your environment!" && exit 1; \
149150
fi;
150-
python -m pip_audit --skip-editable --desc on --fix --dry-run
151+
python -m pip_audit --skip-editable --desc on --fix --dry-run --ignore-vuln GHSA-4xh5-x5gv-qwph
151152

152153
# Run some or all checks over the package code base.
153154
.PHONY: check check-code check-bandit check-flake8 check-lint check-mypy check-actionlint

0 commit comments

Comments
 (0)