From 39ef8f1fe30dc4e4254c58133f0fbdd0f574d0a4 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" Date: Wed, 15 Jul 2026 02:30:53 +0000 Subject: [PATCH] release: v0.12.2 --- README.md | 12 ++++++------ pyproject.toml | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 64df418..de1e163 100644 --- a/README.md +++ b/README.md @@ -32,14 +32,14 @@ Write strategies in a fluent Python DSL — execute them on a vectorized Rust en ## Installation ```bash -pip install manifoldbt +pip install manifoldbt # engine only: backtests, sweeps, metrics +pip install manifoldbt[plot] # + interactive charts and native windows (show=True) +pip install manifoldbt[all] # everything: plots, windows, PNG export, pandas/polars ``` -With all extras (plotting, pandas, polars): - -```bash -pip install manifoldbt[all] -``` +The base install stays light (no browser, no GUI) for scripts, servers and CI. +`[plot]` adds plotly and a native window backend; `[all]` also pulls kaleido for +static PNG/SVG export (which bundles a headless Chromium). ## Quick Start diff --git a/pyproject.toml b/pyproject.toml index 232e1d6..6736bff 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "manifoldbt" -version = "0.12.1" +version = "0.12.2" description = "Rust-powered backtesting engine for quantitative research" requires-python = ">=3.9" license = { file = "LICENSE" }