From bfafd7934df465d79d807e4698659e2c20daf57d Mon Sep 17 00:00:00 2001 From: Aaron Gokaslan Date: Wed, 30 Jun 2021 02:39:14 -0400 Subject: [PATCH] Allow non-headless bullet conda-builds (#1359) * Allow non-headless bullet conda-builds * Testing * set CI back to headless Co-authored-by: Alexander Clegg --- conda-build/linux_matrix_builder.py | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/conda-build/linux_matrix_builder.py b/conda-build/linux_matrix_builder.py index 49a94efab0..7154528621 100644 --- a/conda-build/linux_matrix_builder.py +++ b/conda-build/linux_matrix_builder.py @@ -63,13 +63,8 @@ def main(): headless_modes = [True] py_vers = ["3.6"] - # TODO: Remove filter bullet_modes = True, headless_modes = False as failing - filter_bullet_with_display = lambda product: itertools.filterfalse( - lambda op: op[1:3] == (True, False), product - ) - - for py_ver, use_bullet, headless, cuda_ver in filter_bullet_with_display( - itertools.product(py_vers, bullet_modes, headless_modes, cuda_vers) + for py_ver, use_bullet, headless, cuda_ver in itertools.product( + py_vers, bullet_modes, headless_modes, cuda_vers ): env = os.environ.copy()