From 53adc878c364ec988d6077924e0e730b4dde22a8 Mon Sep 17 00:00:00 2001 From: Dylan Anthony Date: Thu, 26 May 2022 14:04:57 -0600 Subject: [PATCH] Chore: Install Poetry in CI from `pip` --- scripts/ci_install_deps | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/scripts/ci_install_deps b/scripts/ci_install_deps index fd9b74b..ed1c6e9 100755 --- a/scripts/ci_install_deps +++ b/scripts/ci_install_deps @@ -1,8 +1,6 @@ #!/usr/bin/env bash -curl -sSL https://raw.githubusercontent.com/python-poetry/poetry/master/get-poetry.py | python -. $HOME/.poetry/env +pip install poetry poetry --version poetry config virtualenvs.in-project true -poetry run python -m ensurepip --upgrade -poetry install -vv $1 +poetry install $1