Skip to content

Commit

Permalink
build: Don't import jemalloc (#15942)
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchie46 committed Apr 28, 2024
1 parent c1474f6 commit b6441d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion py-polars/src/lib.rs
Expand Up @@ -42,7 +42,7 @@ mod sql;
mod to_numpy;
mod utils;

#[cfg(all(target_family = "unix", not(use_mimalloc)))]
#[cfg(all(target_family = "unix", not(use_mimalloc), not(default_allocator)))]
use jemallocator::Jemalloc;
#[cfg(any(not(target_family = "unix"), use_mimalloc))]
use mimalloc::MiMalloc;
Expand Down

0 comments on commit b6441d0

Please sign in to comment.