diff --git a/python/helpers/requirements.txt b/python/helpers/requirements.txt index 93181463ecad..4b9baed53848 100644 --- a/python/helpers/requirements.txt +++ b/python/helpers/requirements.txt @@ -1,5 +1,5 @@ pip>=21.3.1,<23.2.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 diff --git a/python/lib/dependabot/python/update_checker/pip_compile_version_resolver.rb b/python/lib/dependabot/python/update_checker/pip_compile_version_resolver.rb index 2d9a7fefe8db..a91c399caf70 100644 --- a/python/lib/dependabot/python/update_checker/pip_compile_version_resolver.rb +++ b/python/lib/dependabot/python/update_checker/pip_compile_version_resolver.rb @@ -251,9 +251,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}"