From 3f758bc17a0d1b3d58d24961a6a8b36f58a22dec Mon Sep 17 00:00:00 2001 From: Thomas Schmelzer Date: Sat, 19 Aug 2023 07:25:15 -0700 Subject: [PATCH] Update Makefile --- Makefile | 7 ------- 1 file changed, 7 deletions(-) diff --git a/Makefile b/Makefile index 3a159b4..0a1900b 100644 --- a/Makefile +++ b/Makefile @@ -9,13 +9,6 @@ KERNEL=$(shell poetry version | cut -d' ' -f1) install: ## Install a virtual environment @poetry install -vv -.PHONY: kernel -kernel: install ## Create a kernel for jupyter lab - @echo ${KERNEL} - @poetry run pip install ipykernel - @poetry run python -m ipykernel install --user --name=${KERNEL} - - .PHONY: fmt fmt: ## Run autoformatting and linting @poetry run pip install pre-commit