Skip to content

Commit

Permalink
ci: Ignore new vulernabilties that cannot be fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
MRichards99 committed Aug 30, 2023
1 parent 34a2662 commit 97cb59e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,13 +72,9 @@ def safety(session):
f"--output={requirements.name}",
external=True,
)
# 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 52322 and 52518 as the latest version of Gitpython does not
# support python 3.6 which is still used in production
# Ignore 53325, 53326, 54456, and 55261 as the fixed versions do not support
# python 3.6
# Ignore 50916, 51457, 51668, 52322, 52518, 53325, 53326, 54456, 55261, 58910,
# 58755 as the patched versions of dependencies that they relate don't support
# Python 3.6 which is still required for production
session.run(
"safety",
"check",
Expand All @@ -102,6 +98,10 @@ def safety(session):
"54456",
"--ignore",
"55261",
"--ignore",
"58910",
"--ignore",
"58755",
)

try:
Expand Down

0 comments on commit 97cb59e

Please sign in to comment.