From 8f4b2704996a3660d43bf7d191847f402fcbd8a2 Mon Sep 17 00:00:00 2001 From: Andrew Yoon Date: Sat, 30 Sep 2023 16:31:30 -0400 Subject: [PATCH] Add comment explaining Poetry version pin: Poetry seems to have dropped official support for Python 3.7 but we need to officially support it for PyQt build artifacts. See https://github.com/snok/install-poetry/issues/131 and https://github.com/python-poetry/poetry/pull/7674 --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e142a5ae..48346674 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,6 +32,10 @@ jobs: - name: Install Poetry uses: snok/install-poetry@v1 with: + # Poetry seems to have dropped official support for Python 3.7 + # but we need it for PyQt build artifacts. Pin poetry version. + # See https://github.com/snok/install-poetry/issues/131 + # and https://github.com/python-poetry/poetry/pull/7674 version: 1.5.1 virtualenvs-create: true virtualenvs-in-project: true