From ef1bace2307b99cccd22173933d4911059f4d237 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Tue, 31 Dec 2024 22:48:49 +0000 Subject: [PATCH] fix(ci): install poetry using official installer --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 35d1b4c..3f73345 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -29,9 +29,9 @@ jobs: with: python-version: "${{ vars.PYTHON_VERSION }}" - name: Setup Poetry - uses: abatilo/actions-poetry@v3 - - name: Update PATH - run: PATH="/root/.local/bin:$PATH" + run: curl -sSL https://install.python-poetry.org | python3 - + # - name: Update PATH + # run: PATH="/root/.local/bin:$PATH" - name: Install dependencies run: poetry install - name: Lint