From 1d3647e6a16a1826007b32af7fdc6a44cb3938c0 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Wed, 4 Mar 2020 17:39:59 -0800 Subject: [PATCH] =?UTF-8?q?Make=20gen=5Frequirements=5Fall.py=20case=20ins?= =?UTF-8?q?ensitive=20for=20ignored=20pack=E2=80=A6=20(#30885)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- script/gen_requirements_all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/script/gen_requirements_all.py b/script/gen_requirements_all.py index 2b7fe8226b2..243490499c3 100755 --- a/script/gen_requirements_all.py +++ b/script/gen_requirements_all.py @@ -135,7 +135,7 @@ def gather_recursive_requirements(domain, seen=None): def comment_requirement(req): """Comment out requirement. Some don't install on all systems.""" - return any(ign in req for ign in COMMENT_REQUIREMENTS) + return any(ign.lower() in req.lower() for ign in COMMENT_REQUIREMENTS) def gather_modules():