Skip to content

Commit

Permalink
Fixed safety issues 7/2023
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 Jul 5, 2023
1 parent f6d5f32 commit 5dbc68e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .safety-policy.yml
Expand Up @@ -58,6 +58,8 @@ security:
reason: Fixed GitPython version requires Python>=3.7 and is used there
58755:
reason: Fixed requests version 2.31.0 requires Python>=3.7 and is used there
58910:
reason: Fixed pygments version 2.15.0 requires Python>=3.7 and is used there

# Continue with exit code 0 when vulnerabilities are found.
continue-on-vulnerability-error: False
3 changes: 2 additions & 1 deletion dev-requirements.txt
Expand Up @@ -87,7 +87,8 @@ GitPython>=2.1.1; python_version >= '3.5' and python_version <= '3.6'
GitPython>=3.1.30; 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'
Pygments>=2.7.4; python_version >= '3.5' and python_version <= '3.6'
Pygments>=2.15.0; python_version >= '3.7'
sphinx-rtd-theme>=1.0.0
# Babel 2.7.0 fixes an ImportError for MutableMapping which starts failing on Python 3.10
# Babel 2.9.1 fixes safety issue 42203
Expand Down
3 changes: 3 additions & 0 deletions docs/changes.rst
Expand Up @@ -31,6 +31,9 @@ Released: not yet

**Bug fixes:**

* Addressed safety issues from 7/2023, by increasing packages only needed for
development.

**Enhancements:**

**Cleanup:**
Expand Down
3 changes: 2 additions & 1 deletion minimum-constraints.txt
Expand Up @@ -204,7 +204,8 @@ GitPython==2.1.1; python_version <= '3.6'
GitPython==3.1.30; 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'
Pygments==2.7.4; python_version >= '3.5' and python_version <= '3.6'
Pygments==2.15.0; python_version >= '3.7'
sphinx-rtd-theme==1.0.0
Babel==2.9.1

Expand Down

0 comments on commit 5dbc68e

Please sign in to comment.