From 3c6c3ca706677df4d5f07db981057918f95bd8a1 Mon Sep 17 00:00:00 2001 From: Leo Lara Date: Sat, 18 Nov 2023 21:14:59 +0000 Subject: [PATCH] Publish book --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index e3766074..109827e7 100644 --- a/Makefile +++ b/Makefile @@ -28,6 +28,8 @@ 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