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
4 changes: 3 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,6 @@ httpx[http2]
# a2a (unofficial, stub if not on PyPI)
# For any additional plugins (add as needed)
# Add other packages here as you expand functionality
# supabase_py_vault removed: not on PyPI
# supabase_py_vault removed: not on PyPI
aiohttp>=3.13.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 +39 to +40
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

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

medium

Pinning transitive dependencies directly in requirements.txt can make dependency management more complex over time. While this fixes the immediate security issue, a better long-term solution is to use a dependency management tool like pip-tools or poetry. These tools generate a lock file (e.g., a requirements.txt from a requirements.in file) that pins all direct and transitive dependencies, providing reproducible builds and making it easier to manage updates.

Loading