From b94fbbf30c28b656bb7cbdba2f0e1054d334de09 Mon Sep 17 00:00:00 2001 From: David Garcia Date: Sun, 29 Sep 2024 18:04:54 +0100 Subject: [PATCH] docs: update command Removes the update command from the setup command. This is required because versions now are not strictly pinned in the poetry.lock file since Sphinx ScyllaDB Theme 1.8. Closes scylladb/scylladb#20876 --- docs/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/Makefile b/docs/Makefile index 726ccb2c66..164c18a7a9 100644 --- a/docs/Makefile +++ b/docs/Makefile @@ -32,6 +32,9 @@ setupenv: .PHONY: setup setup: $(POETRY) install + +.PHONY: update +update: $(POETRY) update # Clean commands