-
Notifications
You must be signed in to change notification settings - Fork 6
feat: pin deps for Python 3.8 #366
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
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 | ||||
|---|---|---|---|---|---|---|
| @@ -1,14 +1,16 @@ | ||||||
| # | ||||||
| # This file is autogenerated by pip-compile with Python 3.11 | ||||||
| # This file is autogenerated by pip-compile with Python 3.8 | ||||||
| # by the following command: | ||||||
| # | ||||||
| # make upgrade | ||||||
| # | ||||||
| boto==2.49.0 | ||||||
| # via google-compute-engine | ||||||
| boto3==1.42.31 | ||||||
| # via -r requirements/base.in | ||||||
| botocore==1.42.31 | ||||||
| boto3==1.37.38 | ||||||
| # via | ||||||
| # -c /Users/adusenbery/code/api-manager/requirements/constraints.txt | ||||||
|
||||||
| # -c /Users/adusenbery/code/api-manager/requirements/constraints.txt | |
| # -c requirements/constraints.txt |
This file was deleted.
This file was deleted.
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.
The
upgradetarget installspip-toolsdirectly from PyPI withpython -m pip install pip-tools, which pulls an unpinned third-party build tool and executes its code each timemake upgraderuns. If an attacker compromises thepip-toolspackage or your package index, this step can lead to remote code execution during dependency compilation and allow malicious versions of downstream dependencies to be pinned into your requirements. Installpip-toolsonly from a pinned version (for example via yourrequirements/pip_tools.txtand constraints) so that builds always use a vetted, immutable tool version.