summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--scripts/packagetesting/testwheel.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/packagetesting/testwheel.py b/scripts/packagetesting/testwheel.py
index 2b9cbed2..49f44917 100644
--- a/scripts/packagetesting/testwheel.py
+++ b/scripts/packagetesting/testwheel.py
@@ -89,7 +89,7 @@ def run_example(root, path):
def has_pyinstaller():
"""Checks for PyInstaller"""
code, lines = run_process([sys.executable, "-m", "pip", "list"])
- return any(line.startswith("PyInstaller") for line in lines)
+ return any(line.lower().startswith("pyinstaller") for line in lines)
def test_pyinstaller(example):