Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Addressed safety issues #211

Merged
merged 1 commit into from
Aug 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .safety-policy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,10 @@ security:
reason: Fixed Jinja2 version 3.1.4 requires Python>=3.7 and is used there
71636:
reason: Fixed authlib version 1.3.1 requires Python>=3.8 and is used there
72132:
reason: Fixed zipp version 3.19.1 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
2 changes: 1 addition & 1 deletion docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Released: not yet

**Bug fixes:**

* Fixed safety issues up to 2024-07-21.
* Fixed safety issues up to 2024-08-18.

**Enhancements:**

Expand Down
10 changes: 6 additions & 4 deletions minimum-constraints.txt
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,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.33.5; python_version == '3.6'
wheel==0.38.1; python_version >= '3.7'
Expand Down Expand Up @@ -88,6 +88,7 @@ pydantic==1.10.13; python_version >= '3.7'
typer==0.12.0; python_version >= '3.7'
typer-cli==0.12.0; python_version >= '3.7'
typer-slim==0.12.0; python_version >= '3.7'
psutil==6.0.0; python_version >= '3.7'

# PyYAML is pulled in by dparse
PyYAML==5.3.1
Expand Down Expand Up @@ -185,7 +186,7 @@ alabaster==0.7.9
appdirs==1.4.4
attrs==19.2.0
bleach==3.3.0
certifi==2023.07.22
certifi==2024.7.4
chardet==3.0.3
distlib==0.3.7
docopt==0.6.1
Expand Down Expand Up @@ -226,4 +227,5 @@ urllib3==1.26.19
wcwidth==0.1.7
webencodings==0.5.1
widgetsnbextension==1.2.6
zipp==1.2.0
zipp==3.6.0; python_version <= '3.7'
zipp==3.9.1; python_version >= '3.8'