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
2 changes: 2 additions & 0 deletions dev-requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ mock
six
plotly>=2.0.8
requests[security]
filelock>=3.20.3 # not directly required, pinned by Snyk to avoid a vulnerability
urllib3>=2.6.3 # not directly required, pinned by Snyk to avoid a vulnerability
Comment on lines +13 to +14
Copy link

Copilot AI Jan 12, 2026

Choose a reason for hiding this comment

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

Pinning transitive dependencies directly in dev-requirements.txt can lead to dependency conflicts and maintenance issues. Consider letting the direct dependencies (requests, selenium) manage their urllib3 and filelock requirements. If security fixes are needed, upgrading the direct dependencies (requests[security] and selenium) to versions that depend on secure versions of urllib3 and filelock would be a more maintainable approach.

Suggested change
filelock>=3.20.3 # not directly required, pinned by Snyk to avoid a vulnerability
urllib3>=2.6.3 # not directly required, pinned by Snyk to avoid a vulnerability

Copilot uses AI. Check for mistakes.