Safety exception: Numpy >=1.22.0 needs Python 3.8

This commit is contained in:
JensDiemer 2022-09-19 09:22:56 +02:00
parent 2a5e9abd23
commit 40d6c49422
2 changed files with 15 additions and 0 deletions

3
.gitignore vendored
View file

@ -3,7 +3,10 @@
!.editorconfig
!.flake8
!.gitignore
!.safety-policy.yml
!/doc/screenshots/.gitkeep
__pycache__
secret.txt
/local_test/

12
.safety-policy.yml Normal file
View file

@ -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