Skip to content

Commit

Permalink
Addressed safety issues (#647)
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Maier <[email protected]>
  • Loading branch information
andy-maier authored Aug 18, 2024
1 parent 181379a commit b83d701
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 2 additions & 0 deletions .safety-policy-install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ security:
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
72236:
reason: Fixed setuptools version 70.0.0 requires Python>=3.8 and is used there

# Continue with exit code 0 when vulnerabilities are found.
continue-on-vulnerability-error: False
10 changes: 4 additions & 6 deletions base-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,8 @@
# Base dependencies (must be consistent with minimum-constraints.txt)

pip>=21.2.4
setuptools>=39.0.1; python_version == '3.6'
setuptools>=40.6.0; python_version == '3.7'
setuptools>=41.5.0; python_version >= '3.8' and python_version <= '3.9'
setuptools>=49.0.0; python_version >= '3.10'
setuptools>=59.6.0; python_version == '3.6'
setuptools>=65.5.1; python_version == '3.7'
setuptools>=70.0.0; python_version >= '3.8'
wheel>=0.30.0; python_version == '3.6'
wheel>=0.32.0; python_version == '3.7'
wheel>=0.33.5; python_version >= '3.8'
wheel>=0.38.1; python_version >= '3.7'
2 changes: 1 addition & 1 deletion docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ Released: not yet

**Bug fixes:**

* Addressed safety issues up to 2024-08-16.
* Addressed safety issues up to 2024-08-18.

**Enhancements:**

Expand Down
4 changes: 2 additions & 2 deletions minimum-constraints-install.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ pip==23.3; python_version >= '3.7'

# setuptools 59.7.0 removed support for py36
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'
setuptools==65.5.1; python_version == '3.7'
setuptools==70.0.0; python_version >= '3.8'
wheel==0.30.0; python_version == '3.6'
wheel==0.38.1; python_version >= '3.7'

Expand Down

0 comments on commit b83d701

Please sign in to comment.