From 5f108b110e445cae1dde8489335484ef47290af7 Mon Sep 17 00:00:00 2001 From: David Linke Date: Wed, 8 Jan 2025 22:01:44 +0100 Subject: [PATCH] Install also dev dependencies with make install --- {{cookiecutter.project_name}}/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/{{cookiecutter.project_name}}/Makefile b/{{cookiecutter.project_name}}/Makefile index 3a4bc5f..1e639c3 100644 --- a/{{cookiecutter.project_name}}/Makefile +++ b/{{cookiecutter.project_name}}/Makefile @@ -83,7 +83,7 @@ setup: check-config git-init install gen-project gen-examples gendoc git-add git # install any dependencies required for building install: - poetry install + poetry install --with=dev .PHONY: install # ---