From c4c79827a2ae9966787f4d3ea0abceb75cdd57e9 Mon Sep 17 00:00:00 2001 From: Bastian Kleineidam Date: Mon, 18 Nov 2024 21:34:54 +0100 Subject: [PATCH] Call make init manually --- Makefile | 4 ---- doc/development.md | 1 + scripts/install_dev.sh | 3 --- 3 files changed, 1 insertion(+), 7 deletions(-) diff --git a/Makefile b/Makefile index 53fac7b5..961e4d10 100644 --- a/Makefile +++ b/Makefile @@ -55,10 +55,6 @@ help: ## display this help section .PHONY: init ## install python virtual env and required development packages init: - uv sync --no-install-project - -.PHONY: localbuild ## install patool in local environment -localbuild: uv sync diff --git a/doc/development.md b/doc/development.md index 102ae34c..4f2c625a 100644 --- a/doc/development.md +++ b/doc/development.md @@ -19,6 +19,7 @@ To start developing, run the following commands: 2. Initialize the source directory $ scripts/install_dev.sh + $ make init This installs required packages, creates a virtual Python environment in the directory `.venv/` and installs required modules for development. diff --git a/scripts/install_dev.sh b/scripts/install_dev.sh index 16dd747a..caf69e68 100755 --- a/scripts/install_dev.sh +++ b/scripts/install_dev.sh @@ -118,6 +118,3 @@ if ! grep --quiet LD_LIBRARY_PATH .envrc; then source .envrc fi -# install Python module dependencies and generate local data files -make init -