From e827d64622bd33351518d9f8bb243ccd553841f3 Mon Sep 17 00:00:00 2001 From: Aidar Garikhanov Date: Fri, 10 Jan 2025 15:59:44 +0300 Subject: [PATCH] Fix poetry version --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b942bf4..65cc953 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ PYTHONPATH := `pwd` #* Poetry .PHONY: poetry-download poetry-download: - POETRY_VERSION=1.8.5 curl -sSL https://install.python-poetry.org | $(PYTHON) - + curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.8.5 $(PYTHON) - .PHONY: poetry-remove poetry-remove: @@ -17,7 +17,7 @@ poetry-remove: install: poetry lock -n && poetry export --without-hashes > requirements.txt poetry install -n - -poetry run mypy --install-types --non-interactive hooks tests + poetry run mypy --install-types --non-interactive hooks tests .PHONY: pre-commit-install pre-commit-install: