Skip to content

Commit

Permalink
Fixed safety issues from 10/3
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <maiera@de.ibm.com>
  • Loading branch information
andy-maier committed Oct 3, 2023
1 parent faa3d13 commit 2be5db7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .safety-policy.yml
Expand Up @@ -68,6 +68,10 @@ security:
reason: Fixed sphinx version 3.3.0 requires Python>=3.5 and is used there
60350:
reason: Fixed GitPython version 3.1.32 requires Python>=3.7 and is used there
60789:
reason: Fixed GitPython version 3.1.33 requires Python>=3.7 and is used there
60841:
reason: Fixed GitPython version 3.1.35 requires Python>=3.7 and is used there

# Continue with exit code 0 when vulnerabilities are found.
continue-on-vulnerability-error: False
2 changes: 1 addition & 1 deletion dev-requirements.txt
Expand Up @@ -84,7 +84,7 @@ sphinx-git>=10.1.1
# GitPython 3.1.30 fixes safety issues 52322,52518
GitPython>=2.1.1,<3.0.0; python_version == '2.7'
GitPython>=2.1.1; python_version >= '3.5' and python_version <= '3.6'
GitPython>=3.1.32; python_version >= '3.7'
GitPython>=3.1.35; python_version >= '3.7'
# Pygments 2.7.4 fixes safety issues 50885,50886
Pygments>=2.1.3; python_version == '2.7'
Pygments>=2.7.4; python_version >= '3.5' and python_version <= '3.6'
Expand Down
2 changes: 1 addition & 1 deletion minimum-constraints.txt
Expand Up @@ -202,7 +202,7 @@ docutils==0.14; python_version == '3.10'
docutils==0.16; python_version >= '3.11'
sphinx-git==10.1.1
GitPython==2.1.1; python_version <= '3.6'
GitPython==3.1.32; python_version >= '3.7'
GitPython==3.1.35; python_version >= '3.7'
sphinxcontrib-websupport==1.1.2
Pygments==2.1.3; python_version == '2.7'
Pygments==2.7.4; python_version >= '3.5' and python_version <= '3.6'
Expand Down

0 comments on commit 2be5db7

Please sign in to comment.