From 2095342245a2af83926bf09eb726555e31cbfd49 Mon Sep 17 00:00:00 2001 From: Alex Willmer Date: Fri, 7 Feb 2025 10:55:07 +0000 Subject: [PATCH] CI: Remove unused ci_lib.have_*() functions --- .ci/ci_lib.py | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.ci/ci_lib.py b/.ci/ci_lib.py index 25648bbe..c078791f 100644 --- a/.ci/ci_lib.py +++ b/.ci/ci_lib.py @@ -61,14 +61,6 @@ def _have_cmd(args): return True -def have_apt(): - return _have_cmd(['apt', '--help']) - - -def have_brew(): - return _have_cmd(['brew', 'help']) - - def have_docker(): return _have_cmd(['docker', 'info'])