From 831d2ca2dcd5371ea70183feb689d502395e1d94 Mon Sep 17 00:00:00 2001 From: SeaswimmerTheFsh Date: Sun, 24 Sep 2023 12:36:40 -0400 Subject: [PATCH] fix(actions): installing poetry through pipx --- .forgejo/workflows/pylint.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.forgejo/workflows/pylint.yaml b/.forgejo/workflows/pylint.yaml index 5985cff..2176f80 100644 --- a/.forgejo/workflows/pylint.yaml +++ b/.forgejo/workflows/pylint.yaml @@ -15,7 +15,10 @@ jobs: add-apt-repository ppa:deadsnakes/ppa apt install -y python3.11 gcc python3.11-dev python3.11-venv - name: Install Poetry - run: curl -sSL https://install.python-poetry.org | python3.11 - + run: | + python3.11 -m pip install --user pipx + python3.11 -m pipx ensurepath + python3.11 -m pipx install poetry==1.2.0 - name: Install dependencies run: poetry install --with dev - name: Analysing the code with Pylint