From e3a7356cb48a26dbca90246990f89947c0e0950f Mon Sep 17 00:00:00 2001 From: Alexandru Fikl Date: Fri, 11 Oct 2024 09:50:21 +0300 Subject: [PATCH] fix: set maximum supported python version --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 91773f4..1a15643 100644 --- a/Makefile +++ b/Makefile @@ -28,7 +28,9 @@ isort: ## Run ruff isort fixes over the source code .PHONY: isort pyproject: ## Run pyproject-fmt over the configuration - $(PYTHON) -m pyproject_fmt --indent 4 pyproject.toml + $(PYTHON) -m pyproject_fmt \ + --indent 4 --max-supported-python '3.12' \ + pyproject.toml @echo -e "\e[1;32mpyproject clean!\e[0m" .PHONY: pyproject