Skip to content

Commit 22f90c4

Browse files
Ignore security issue with mkdocs-material
This requires handling upstream (see linked issue), trying to bump this dependency errored with: Because mkdocs-material (9.5.32) depends on mkdocs (>=1.6,<2.0) and portray (1.8.0) depends on mkdocs (>=1.3.0,<1.4.0), mkdocs-material (9.5.32) is incompatible with portray (1.8.0). And because no versions of portray match >1.8.0, mkdocs-material (9.5.32) is incompatible with portray (>=1.8.0). So, because isort depends on both portray (>=1.8.0) and mkdocs-material (9.5.32), version solving failed.
1 parent bda5037 commit 22f90c4

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

scripts/lint.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,7 @@ poetry run black --target-version py38 .
77
poetry run isort --profile hug --check --diff isort/ tests/
88
poetry run isort --profile hug --check --diff example_*/
99
poetry run flake8 isort/ tests/
10-
poetry run safety check -i 51457 -i 59587 # https://github.com/tiangolo/typer/discussions/674
10+
# 51457: https://github.com/tiangolo/typer/discussions/674
11+
# 72715: https://github.com/timothycrosley/portray/issues/95
12+
poetry run safety check -i 72715 -i 51457 -i 59587
1113
poetry run bandit -r isort/ -x isort/_vendored

0 commit comments

Comments
 (0)