From 2787190871d6be6f18f7ff1fa61c8e570cd2d7e4 Mon Sep 17 00:00:00 2001 From: laughingman7743 Date: Mon, 13 Jan 2025 15:53:15 +0900 Subject: [PATCH] Make the version a variable --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7d02c757..f85046c4 100644 --- a/Makefile +++ b/Makefile @@ -1,3 +1,6 @@ +RUFF_VERSION := 0.9.1 +TOX_VERSION := 4.23.2 + .PHONY: fmt fmt: # TODO: https://github.com/astral-sh/uv/issues/5903 @@ -28,5 +31,5 @@ docs: .PHONY: tool tool: - uv tool install ruff@0.9.1 - uv tool install tox@4.23.2 --with tox-uv --with tox-gh-actions + uv tool install ruff@$(RUFF_VERSION) + uv tool install tox@$(TOX_VERSION) --with tox-uv --with tox-gh-actions