Skip to content

Commit

Permalink
Safety issues from 2023-11-20
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <[email protected]>
  • Loading branch information
andy-maier committed Nov 20, 2023
1 parent 8bf699f commit 186b54a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .safety-policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ security:
reason: Fixed gitpython version 3.1.35 requires Python>=3.7 and is used there
61601:
reason: Fixed urllib3 version 1.26.17 requires Python>=3.6 and is used there
61893:
reason: Fixed urllib3 version 1.26.18 requires Python>=3.6 and is used there

# Continue with exit code 0 when vulnerabilities are found.
continue-on-vulnerability-error: False
4 changes: 2 additions & 2 deletions minimum-constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -92,9 +92,9 @@ PyYAML==5.3.1

python-dateutil==2.8.2
jsonschema==3.0.1
urllib3==1.26.17; python_version == '2.7'
urllib3==1.26.18; python_version == '2.7'
urllib3==1.26.9; python_version == '3.5'
urllib3==1.26.17; python_version >= '3.6'
urllib3==1.26.18; python_version >= '3.6'


# Direct dependencies for development (must be consistent with dev-requirements.txt)
Expand Down
4 changes: 2 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,6 @@ PyYAML>=5.3.1,!=5.4.0,!=5.4.1,!=6.0.0; python_version >= '3.12'
python-dateutil>=2.8.2
jsonschema>=3.0.1,!=4.0.0,!=4.18.1
# urllib3 1.26.10 removed support for py35
urllib3>=1.26.17; python_version == '2.7'
urllib3>=1.26.18; python_version == '2.7'
urllib3>=1.26.9; python_version == '3.5'
urllib3>=1.26.17; python_version >= '3.6'
urllib3>=1.26.18; python_version >= '3.6'

0 comments on commit 186b54a

Please sign in to comment.