Skip to content

Commit e827d64

Browse files
committed
Fix poetry version
1 parent a9d52fb commit e827d64

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ PYTHONPATH := `pwd`
66
#* Poetry
77
.PHONY: poetry-download
88
poetry-download:
9-
POETRY_VERSION=1.8.5 curl -sSL https://install.python-poetry.org | $(PYTHON) -
9+
curl -sSL https://install.python-poetry.org | POETRY_VERSION=1.8.5 $(PYTHON) -
1010

1111
.PHONY: poetry-remove
1212
poetry-remove:
@@ -17,7 +17,7 @@ poetry-remove:
1717
install:
1818
poetry lock -n && poetry export --without-hashes > requirements.txt
1919
poetry install -n
20-
-poetry run mypy --install-types --non-interactive hooks tests
20+
poetry run mypy --install-types --non-interactive hooks tests
2121

2222
.PHONY: pre-commit-install
2323
pre-commit-install:

0 commit comments

Comments
 (0)