Skip to content

Commit

Permalink
Update for safety
Browse files Browse the repository at this point in the history
  • Loading branch information
Reillyhewitson committed Feb 1, 2023
1 parent 8627dbb commit 619d3e4
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion noxfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,8 @@ 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 as the latest version of gitpython as they do not support
# Ignore 52355 and 52518 as the latest version of gitpython
# as they do not support
# python 3.6 which is still used in production
session.run(
"safety",
Expand All @@ -90,6 +91,8 @@ def safety(session):
"51668",
"--ignore",
"52322",
"--ignore",
"52518",
)

try:
Expand Down

0 comments on commit 619d3e4

Please sign in to comment.