File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -141,14 +141,13 @@ 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. Note that we temporarily ignore GHSA-4xh5-x5gv-qwph until the
145- # issue is resolved: https://github.com/pypa/pip/issues/13607
144+ # found an issue.
146145.PHONY : audit
147146audit :
148147 if ! $$ (python -c " import pip_audit" & > /dev/null); then \
149148 echo " No package pip_audit installed, upgrade your environment!" && exit 1; \
150149 fi ;
151- python -m pip_audit --skip-editable --desc on --fix --dry-run --ignore-vuln GHSA-4xh5-x5gv-qwph
150+ python -m pip_audit --skip-editable --desc on --fix --dry-run
152151
153152# Run some or all checks over the package code base.
154153.PHONY : check check-code check-bandit check-flake8 check-lint check-mypy check-actionlint
You can’t perform that action at this time.
0 commit comments