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 python/unittest_py/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,4 @@ soundfile
apache-tvm-ffi==0.1.5
graphviz
nvidia-ml-py3 ; platform_system != "Darwin"
fonttools>=4.62.0 # not directly required, pinned by Snyk to avoid a vulnerability
Copy link

Copilot AI Apr 4, 2026

Choose a reason for hiding this comment

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

The inline comment says this dependency is “pinned by Snyk”, but the specifier >=4.62.0 is a minimum constraint (not a pin) and allows future upgrades that may change behavior. Consider either (a) changing the wording to “constrained to >=4.62.0” / “minimum version per Snyk”, or (b) using an exact pin (==4.62.0, optionally with an upper bound strategy) if you want reproducible CI installs.

Suggested change
fonttools>=4.62.0 # not directly required, pinned by Snyk to avoid a vulnerability
fonttools>=4.62.0 # not directly required, minimum version per Snyk to avoid a vulnerability

Copilot uses AI. Check for mistakes.