-
Notifications
You must be signed in to change notification settings - Fork 7
[Snyk] Security upgrade zipp from 3.15.0 to 3.19.1 #87
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,4 +6,5 @@ streamlit-image-comparison==0.0.2 | |
| transformers==4.22.2 | ||
| diffusers==0.3.0 | ||
| torch==1.10.0 | ||
| pandas==1.4.1 | ||
| pandas==1.4.1 | ||
| zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability | ||
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This requirements file otherwise pins all dependencies with
==, butzippis specified as>=3.19.1. That breaks reproducibility and is inconsistent with the established pattern in this file. Consider pinning to an exact version (e.g.,==3.19.1) or introducing a separate constraints file if ranges are desired.