File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -225,12 +225,14 @@ requirements.txt: pyproject.toml
225
225
# editable mode (like the one in development here) because they may not have
226
226
# a PyPI entry; also print out CVE description and potential fixes if audit
227
227
# found an issue.
228
+ # TODO: do not ignore GHSA-pr76-5cm5-w9cj once the patch is out.
229
+ # See: https://github.com/ishepard/pydriller/issues/280
228
230
.PHONY : audit
229
231
audit :
230
232
if ! $$ (python -c " import pip_audit" & > /dev/null); then \
231
233
echo " No package pip_audit installed, upgrade your environment!" && exit 1; \
232
234
fi ;
233
- python -m pip_audit --skip-editable --desc on --fix --dry-run
235
+ python -m pip_audit --skip-editable --desc on --fix --dry-run --ignore-vuln GHSA-pr76-5cm5-w9cj
234
236
235
237
# Run some or all checks over the package code base.
236
238
.PHONY : check check-code check-bandit check-flake8 check-lint check-mypy check-go check-actionlint
You can’t perform that action at this time.
0 commit comments