From 5f45ad7fc10d244b3713c1df9417939b06b815bb Mon Sep 17 00:00:00 2001 From: sergio Date: Mon, 3 Apr 2023 13:56:34 -0700 Subject: [PATCH] update install poetry --- CONTRIBUTING.md | 2 +- Makefile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 12cc056..e49918c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -6,7 +6,7 @@ We use `poetry` to manage the [dependencies](https://github.com/python-poetry/po If you dont have `poetry` installed, you should run the command below. ```bash -make download-poetry +make poetry-download ``` To install dependencies and prepare [`pre-commit`](https://pre-commit.com/) hooks you would need to run `install` command: diff --git a/Makefile b/Makefile index c5ab586..cad8462 100644 --- a/Makefile +++ b/Makefile @@ -10,11 +10,11 @@ VERSION := latest #* Poetry .PHONY: poetry-download poetry-download: - curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | $(PYTHON) - + curl -sSL https://install.python-poetry.org | $(PYTHON) - .PHONY: poetry-remove poetry-remove: - curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/install-poetry.py | $(PYTHON) - --uninstall + curl -sSL https://install.python-poetry.org | $(PYTHON) - --uninstall #* Installation .PHONY: install