Skip to content
Open
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
1 change: 1 addition & 0 deletions time_sequence_prediction/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
torch
matplotlib
fonttools>=4.61.0 # not directly required, pinned by Snyk to avoid a vulnerability

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

While pinning this transitive dependency with >= is a good security improvement, the other dependencies (torch, matplotlib) are not pinned. For better build reproducibility, it's a best practice to pin all dependencies to exact versions using ==.

This prevents unexpected issues caused by dependency updates and ensures everyone works with the same package versions. Consider pinning all dependencies in this file. Using == for fonttools would also align with this practice.

fonttools==4.61.0 # not directly required, pinned by Snyk to avoid a vulnerability