mirror of
https://github.com/YunoHost-Apps/django-for-runners_ynh.git
synced 2024-09-03 18:26:16 +02:00
Safety exception: Numpy >=1.22.0 needs Python 3.8
This commit is contained in:
parent
2a5e9abd23
commit
40d6c49422
2 changed files with 15 additions and 0 deletions
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -3,7 +3,10 @@
|
||||||
!.editorconfig
|
!.editorconfig
|
||||||
!.flake8
|
!.flake8
|
||||||
!.gitignore
|
!.gitignore
|
||||||
|
!.safety-policy.yml
|
||||||
|
|
||||||
!/doc/screenshots/.gitkeep
|
!/doc/screenshots/.gitkeep
|
||||||
|
|
||||||
__pycache__
|
__pycache__
|
||||||
secret.txt
|
secret.txt
|
||||||
/local_test/
|
/local_test/
|
||||||
|
|
12
.safety-policy.yml
Normal file
12
.safety-policy.yml
Normal 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
|
Loading…
Reference in a new issue