Skip to content

Commit 85dd70c

Browse files
committed
Do not disable _lttb on macOS
1 parent 4d64ee6 commit 85dd70c

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

chaco/downsample/lttb.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,7 @@
2020
logger.warning(
2121
"Can't import _lttb extension module, lttb downsampling will not work."
2222
)
23-
if platform.system() == 'Darwin':
24-
# Disabling acceleration on MacOS see
25-
# https://github.com/enthought/chaco/issues/918
26-
_lttb = None
23+
2724

2825
def largest_triangle_three_buckets(points, n_buckets):
2926
"""Apply the largest triangle three buckets algorithm to data points

0 commit comments

Comments
 (0)