Skip to content

Commit 17f1ec8

Browse files
authored
Merge pull request #32 from Renumics/ops/ignore-nbconvert-vulnerability
Ignore nbconvert vulnerability since dev dependency and not yet fixed
2 parents 1a0f84a + 4baa8a5 commit 17f1ec8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ jobs:
9999
python-version: ${{ matrix.python-version }}
100100
- name: check
101101
run: |
102-
poetry run pip-audit
102+
poetry run pip-audit --ignore-vuln GHSA-xm59-rqc7-hhvf # not yet fixed, dev dependency
103103
104104
doctest:
105105
name: "🧪 Run Doctests"

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ typecheck: ## Typecheck source files
3131

3232
.PHONY: audit
3333
audit: ## Audit project dependencies
34-
poetry run pip-audit
34+
poetry run pip-audit --ignore-vuln GHSA-xm59-rqc7-hhvf # not yet fixed, dev dependency
3535

3636
.PHONY: check
3737
check: ## Run all checks

0 commit comments

Comments
 (0)