From d14a8e02f36955ee57f99fa70811e8a3779b0b63 Mon Sep 17 00:00:00 2001 From: liamhuber Date: Wed, 22 Nov 2023 15:20:19 -0800 Subject: [PATCH] Patch expected lengths I think we just had an off-by-one error when touching up the script. --- .support/update_environment.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.support/update_environment.py b/.support/update_environment.py index b5ac45fb..995c589e 100644 --- a/.support/update_environment.py +++ b/.support/update_environment.py @@ -72,7 +72,7 @@ def ends_in_yml(s): def pattern_is_bump_from_to(list_): - if len(list_) < 10: + if len(list_) < 9: return False return all( [ @@ -85,7 +85,7 @@ def pattern_is_bump_from_to(list_): def pattern_is_update_requirement_from_to(list_): - if len(list_) < 11: + if len(list_) < 10: return False return all( [