From 40d6c49422d5ee6e6f2d8a198e32284c5e46fa4d Mon Sep 17 00:00:00 2001 From: JensDiemer Date: Mon, 19 Sep 2022 09:22:56 +0200 Subject: [PATCH] Safety exception: Numpy >=1.22.0 needs Python 3.8 --- .gitignore | 3 +++ .safety-policy.yml | 12 ++++++++++++ 2 files changed, 15 insertions(+) create mode 100644 .safety-policy.yml 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