From 8345176ccc1ca17e5b12960be13447e14fe23544 Mon Sep 17 00:00:00 2001 From: "J. Nick Koston" Date: Sat, 26 Nov 2022 23:31:32 -1000 Subject: [PATCH] Adjust pip check for four conflicts (#82777) --- script/pip_check | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/pip_check b/script/pip_check index 9ed327b54f4..ae780b07d60 100755 --- a/script/pip_check +++ b/script/pip_check @@ -3,7 +3,7 @@ PIP_CACHE=$1 # Number of existing dependency conflicts # Update if a PR resolve one! -DEPENDENCY_CONFLICTS=3 +DEPENDENCY_CONFLICTS=4 PIP_CHECK=$(pip check --cache-dir=$PIP_CACHE) LINE_COUNT=$(echo "$PIP_CHECK" | wc -l)