We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a9d52fb commit e827d64Copy full SHA for e827d64
Makefile
@@ -6,7 +6,7 @@ PYTHONPATH := `pwd`
6
#* Poetry
7
.PHONY: poetry-download
8
poetry-download:
9
- 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) -
10
11
.PHONY: poetry-remove
12
poetry-remove:
@@ -17,7 +17,7 @@ poetry-remove:
17
install:
18
poetry lock -n && poetry export --without-hashes > requirements.txt
19
poetry install -n
20
- -poetry run mypy --install-types --non-interactive hooks tests
+ poetry run mypy --install-types --non-interactive hooks tests
21
22
.PHONY: pre-commit-install
23
pre-commit-install:
0 commit comments