From e3b510750c03fe1dfe7cd20c242f616c6ebabc49 Mon Sep 17 00:00:00 2001 From: Ben Sully Date: Fri, 8 Nov 2024 13:22:59 +0000 Subject: [PATCH] Don't specify parallel feature for augurs-dtw-js right now It complicates the build process because we need to use a nightly toolchain with a custom std library build, and complicates the bundler process for users too. --- js/justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/justfile b/js/justfile index b2f344a4..98966828 100644 --- a/js/justfile +++ b/js/justfile @@ -2,7 +2,7 @@ build: \ (build-inner "changepoint") \ (build-inner "clustering") \ (build-inner "core") \ - (build-inner "dtw" "--features=parallel") \ + (build-inner "dtw") \ (build-inner "ets") \ (build-inner "mstl") \ (build-inner "outlier") \