diff --git a/.gitignore b/.gitignore index 3462408..7a45778 100644 --- a/.gitignore +++ b/.gitignore @@ -3,7 +3,10 @@ !.editorconfig !.flake8 !.gitignore +!.safety-policy.yml + !/doc/screenshots/.gitkeep + __pycache__ secret.txt /local_test/ diff --git a/.safety-policy.yml b/.safety-policy.yml new file mode 100644 index 0000000..db7d7f4 --- /dev/null +++ b/.safety-policy.yml @@ -0,0 +1,12 @@ +# Safety Security and License Configuration file +security: + ignore-vulnerabilities: # Here you can list multiple specific vulnerabilities you want to ignore (optionally for a time period) + 44715: + reason: Numpy >=1.22.0 needs Python 3.8 + expires: '2022-12-31' # datetime string - date this ignore will expire, best practice to use this variable + 44716: + reason: Numpy >=1.22.0 needs Python 3.8 + expires: '2022-12-31' # datetime string - date this ignore will expire, best practice to use this variable + 44717: + reason: Numpy >=1.22.0 needs Python 3.8 + expires: '2022-12-31' # datetime string - date this ignore will expire, best practice to use this variable