Skip to content

Commit

Permalink
Addressed safety issues up to 2024-06-21
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 Jun 21, 2024
1 parent a8fe373 commit 2da07e5
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .safety-policy-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,8 @@ security:
reason: Fixed stomp-py version 8.1.1 requires Python>=3.7 and is used there
67895:
reason: Fixed idna version 3.7 requires requests>=2.26.0 which requires Python>=3.6 and is used there
71064:
reason: Fixed requests version 2.32.2 requires Python>=3.8 and is used there

# Continue with exit code 0 when vulnerabilities are found.
continue-on-vulnerability-error: False
1 change: 1 addition & 0 deletions changes/noissue.5.fix.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Addressed safety issues up to 2024-06-21
3 changes: 2 additions & 1 deletion minimum-constraints-install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,8 @@ pytz==2016.10; python_version <= '3.9'
pytz==2019.1; python_version >= '3.10'
requests==2.25.0; python_version <= '3.5'
requests==2.26.0; python_version == '3.6'
requests==2.31.0; python_version >= '3.7'
requests==2.31.0; python_version == '3.7'
requests==2.32.3; python_version >= '3.8'
six==1.14.0; python_version <= '3.9'
six==1.16.0; python_version >= '3.10'
stomp-py==4.1.23; python_version <= '3.6'
Expand Down
3 changes: 2 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ pytz>=2019.1; python_version >= '3.10'
# remove ImportWarning in six
requests>=2.25.0; python_version <= '3.5'
requests>=2.26.0; python_version == '3.6'
requests>=2.31.0; python_version >= '3.7'
requests>=2.31.0; python_version == '3.7'
requests>=2.32.3; python_version >= '3.8'

# six 1.16.0 removes the ImportWarning raised by Python 3.10
six>=1.14.0; python_version <= '3.9'
Expand Down

0 comments on commit 2da07e5

Please sign in to comment.