Skip to content

Commit

Permalink
Addressed safety issues up to 2023-11-26
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 26, 2023
1 parent 9a1c22a commit a7300a5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
2 changes: 2 additions & 0 deletions .safety-policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,8 @@ security:
reason: Fixed urllib3 version 1.26.18 requires Python>=3.6 and is used there
61949:
reason: Fixed tornado version 6.3.3 requires Python>=3.8 and is used there
62044:
reason: Fixed pip version 23.3 requires Python>=3.7 and is used there

# Continue with exit code 0 when vulnerabilities are found.
continue-on-vulnerability-error: False
2 changes: 2 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ Released: not yet

**Bug fixes:**

* Addressed safety issues up to 2023-11-26.

**Enhancements:**

**Cleanup:**
Expand Down
7 changes: 4 additions & 3 deletions minimum-constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,16 +78,17 @@
# Pip 21.0 removed support for Python<=3.5
# pip>=21.0 is needed for the cryptography package on Windows on GitHub Actions.
pip==19.3.1; python_version <= '3.5'
pip==21.2.4; python_version >= '3.6' and python_version <= '3.9'
pip==23.0.1; python_version >= '3.10' and python_version <= '3.11'
pip==23.2.0; python_version >= '3.12'
pip==21.3.1; python_version == '3.6'
pip==23.3; python_version >= '3.7'

# setuptools 51.0.0 removed support for py35
# setuptools 59.7.0 removed support for py36
setuptools==39.0.1; python_version == '2.7'
setuptools==50.3.2; python_version == '3.5'
setuptools==59.6.0; python_version == '3.6'
setuptools==65.5.1; python_version >= '3.7' and python_version <= '3.11'
setuptools==66.1.0; python_version >= '3.12'

wheel==0.30.0; python_version <= '3.6'
wheel==0.38.1; python_version >= '3.7'

Expand Down

0 comments on commit a7300a5

Please sign in to comment.