From 972612ce210aed00aefb13964e3829703151d24c Mon Sep 17 00:00:00 2001 From: Piotr Surowiec Date: Mon, 17 Jul 2023 16:01:29 +0200 Subject: [PATCH] chore: remove redundant pip-tools resolver `--resolver=backtracking` is the default option since `pip-tools==7.0.0` We updated the `pip-tools` dependency in 045e91f. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index a13024bd4..3cf47557d 100644 --- a/Makefile +++ b/Makefile @@ -95,7 +95,7 @@ test: test.unit test.integration test.quality ## Run all tests tox -e translations # Define PIP_COMPILE_OPTS=-v to get more information during make upgrade. -PIP_COMPILE = pip-compile --upgrade --resolver=backtracking $(PIP_COMPILE_OPTS) +PIP_COMPILE = pip-compile --upgrade $(PIP_COMPILE_OPTS) upgrade: export CUSTOM_COMPILE_COMMAND=make upgrade upgrade: ## update the requirements/*.txt files with the latest packages satisfying requirements/*.in