Skip to content
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

Upgrade pip-tools to 7.2.0 #7711

Merged
merged 1 commit into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
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: 1 addition & 1 deletion python/helpers/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
pip>=21.3.1,<23.3.0 # Range maintains py36 support TODO: Review python 3.6 support in April 2023 (eol ubuntu 18.04)
pip-tools>=6.4.0,<=6.14.0 # Range maintains py36 support TODO: Review python 3.6 support in April 2023 (eol ubuntu 18.04)
pip-tools==7.2.0
hashin==0.17.0
pipenv==2022.4.8
pipfile==0.0.2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,6 @@ def pip_compile_options(filename)
# TODO: Stop explicitly specifying `allow-unsafe` once it becomes the default:
# https://github.com/jazzband/pip-tools/issues/989#issuecomment-1661254701
options += ["--allow-unsafe"]
# TODO: This is the default as of https://github.com/jazzband/pip-tools/releases/tag/7.0.0
# so stop explicitly specifying it as soon as we upgrade
options += ["--resolver backtracking"]

if (requirements_file = compiled_file_for_filename(filename))
options << "--output-file=#{requirements_file.name}"
Expand Down