From f14bf5964c064e852b81d9f846ea24cb8ce44e06 Mon Sep 17 00:00:00 2001 From: Sutou Kouhei Date: Thu, 2 Apr 2026 18:22:35 +0900 Subject: [PATCH] GH-49295: [Python] Remove "mimalloc" from `mandatory_backends` --- python/pyarrow/tests/test_memory.py | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/python/pyarrow/tests/test_memory.py b/python/pyarrow/tests/test_memory.py index 29e47b517566..56196bd9c5b3 100644 --- a/python/pyarrow/tests/test_memory.py +++ b/python/pyarrow/tests/test_memory.py @@ -30,9 +30,7 @@ pytestmark = pytest.mark.processes possible_backends = ["system", "jemalloc", "mimalloc"] -# Backends which are expected to be present in all builds of PyArrow, -# except if the user manually recompiled Arrow C++. -mandatory_backends = ["system", "mimalloc"] +mandatory_backends = ["system"] def backend_factory(backend_name):