From adab89700f265281ed502a7fa3be574e3455bd2e Mon Sep 17 00:00:00 2001 From: Leo Kirchner Date: Thu, 24 Aug 2023 17:06:48 -0600 Subject: [PATCH] pins poetry in Dockerfile to 1.5.1 --- .github/workflows/ci.yml | 2 ++ Dockerfile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index ec1b68d..6d22775 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -130,6 +130,7 @@ jobs: fail-fast: true matrix: python-version: ["3.7", "3.8", "3.9", "3.10"] + poetry-version: ["1.5.1"] runs-on: "ubuntu-20.04" env: PYTHON_VER: "${{ matrix.python-version }}" @@ -140,6 +141,7 @@ jobs: uses: "networktocode/gh-action-setup-poetry-environment@v5" with: python-version: "${{ matrix.python-version }}" + poetry-version: "${{ matrix.poetry-version }}" - name: "Install redis" run: "sudo apt-get install -y redis" - name: "Run poetry Install" diff --git a/Dockerfile b/Dockerfile index 824f054..e5b36ce 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \ && rm -rf /var/lib/apt/lists/* RUN pip install --upgrade pip \ - && pip install poetry + && pip install poetry==1.5.1 WORKDIR /local