diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 59cf6ae..6b8677f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -99,7 +99,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: check run: | - poetry run pip-audit + poetry run pip-audit --ignore-vuln GHSA-xm59-rqc7-hhvf # not yet fixed, dev dependency doctest: name: "🧪 Run Doctests" diff --git a/Makefile b/Makefile index 1add735..ad2cae6 100644 --- a/Makefile +++ b/Makefile @@ -31,7 +31,7 @@ typecheck: ## Typecheck source files .PHONY: audit audit: ## Audit project dependencies - poetry run pip-audit + poetry run pip-audit --ignore-vuln GHSA-xm59-rqc7-hhvf # not yet fixed, dev dependency .PHONY: check check: ## Run all checks