From 8a9e8459108a3ea5228c3da502b5c602cfc74173 Mon Sep 17 00:00:00 2001 From: Yohan Boniface Date: Fri, 9 Feb 2024 18:39:13 +0100 Subject: [PATCH] chore: do not call test and compilemessages command in make build Those commands are documented in the release process, so they have already run at this stage. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 82fce513..928d7753 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ docker: ## Create a new Docker image and publish it docker push umap/umap:${VERSION} .PHONY: build -build: test compilemessages ## Build the Python package before release +build: ## Build the Python package before release @hatch build --clean .PHONY: publish