From 6d19083e8c64fb11ab7c822e6bfb6aec48d55012 Mon Sep 17 00:00:00 2001 From: Leo Lara Date: Sat, 18 Nov 2023 21:14:59 +0000 Subject: [PATCH] Publish book --- Makefile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Makefile b/Makefile index e3766074..dce03556 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,12 @@ test: ./target/test_coverage/grcov . --binary-path ./target/debug/deps/ -s . -t lcov --branch --ignore-not-existing --ignore '../*' --ignore "/*" -o target/test_coverage/tests.lcov book: + python3 -m venv .env + . .env/bin/activate + pip install -r requirements.txt + maturin develop + pip install jupyter + python -m ipykernel install --user --name=chiquito_kernel jupyter-book build book .PHONY: precommit build test book