-
Notifications
You must be signed in to change notification settings - Fork 21
[Snyk] Fix for 2 vulnerabilities #33
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 |
|---|---|---|
|
|
@@ -3,4 +3,6 @@ captcha | |
| pyyaml | ||
| pillow | ||
| tqdm | ||
| wheel>=0.38.0 # not directly required, pinned by Snyk to avoid a vulnerability | ||
| wheel>=0.38.0 # not directly required, pinned by Snyk to avoid a vulnerability | ||
| protobuf>=5.29.6 # not directly required, pinned by Snyk to avoid a vulnerability | ||
| 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 commentThe reason will be displayed to describe this comment to others. Learn more. Zipp upgrade incompatible with project's Python 3.7 requirementHigh Severity The |
||


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.
Major protobuf upgrade may break pytorch-lightning TensorBoard logging
High Severity
The upgrade from
protobuf3.20.3 to >=5.29.6 introduces a major version jump that has documented compatibility issues with the existingpytorch-lightning==1.6.0rc0dependency. This older pytorch-lightning version uses TensorBoard, which has known import failures when protobuf > 3.20 is installed. The project'slauncher.pyusespl.loggers.TensorBoardLogger, so training will likely fail at import time with errors likeTypeErrororAttributeErrorin protobuf-related code paths.