Skip to content

Commit

Permalink
Ignore werkzeug vulnerability
Browse files Browse the repository at this point in the history
  • Loading branch information
VKTB committed Jun 12, 2023
1 parent 2319b35 commit be37a71
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,9 +75,10 @@ def safety(session):
# Ignore 50916 as the latest version of pydantic and
# Ignore 51457 as the latest version of pytest and
# Ignore 51668 as the latest version of SQLAchemy and
# Ignore 52355 and 52518 as the latest version of gitpython
# as they do not support
# python 3.6 which is still used in production
# Ignore 52322 and 52518 as the latest version of Gitpython does not
# support python 3.6 which is still used in production
# Ignore 53325, 53326, and 54456 as the fixed versions do not support
# python 3.6
session.run(
"safety",
"check",
Expand All @@ -97,6 +98,8 @@ def safety(session):
"53325",
"--ignore",
"53326",
"--ignore",
"54456",
)

try:
Expand Down

0 comments on commit be37a71

Please sign in to comment.