From 72cd7e089389509bd51d520546dddf56944fde7f Mon Sep 17 00:00:00 2001 From: Hassan Kibirige Date: Wed, 28 Feb 2024 21:07:00 +0300 Subject: [PATCH] Add makefile command to get unique gallery tags --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 25c74c6..2f1546d 100644 --- a/Makefile +++ b/Makefile @@ -35,6 +35,9 @@ clean-build: find . -name '*.egg-info' -exec rm -fr {} + find . -name '*.egg' -exec rm -f {} + +gallery-tags: ## List of unique tags gallery worthy output + @grep -Ehrao "# Gallery, \w+" plotnine_examples | sort | uniq + examples: ## Run notebooks in plonine/examples/ export PYDEVD_DISABLE_FILE_VALIDATION=1; \ export PYTHONWARNINGS="ignore::FutureWarning::,ignore::DeprecationWarning::"; \