From 644f26a6f9756bd6dff1f7bb4973c54202ce9554 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= Date: Tue, 10 Oct 2023 18:47:04 -0600 Subject: [PATCH] Continue using poetry installer --- .github/workflows/codspeed.yml | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/.github/workflows/codspeed.yml b/.github/workflows/codspeed.yml index 2c710150a0..1c69efd9ab 100644 --- a/.github/workflows/codspeed.yml +++ b/.github/workflows/codspeed.yml @@ -16,13 +16,6 @@ jobs: - name: Check out the repository uses: actions/checkout@v4.1.0 - - name: Install Poetry - env: - PIP_CONSTRAINT: .github/workflows/constraints.txt - run: | - pipx install poetry - poetry --version - - name: Setup Python 3.11 uses: actions/setup-python@v4.7.1 with: @@ -30,6 +23,10 @@ jobs: architecture: x64 cache: 'poetry' + - name: Install poetry + run: | + curl -fsS https://install.python-poetry.org | python - -y + - name: Configure poetry run: poetry config virtualenvs.create false