From 97b0bc014c641be66e5153a1b232ef800fe940b4 Mon Sep 17 00:00:00 2001 From: per1234 Date: Wed, 18 Oct 2023 14:35:52 -0700 Subject: [PATCH] Pin Python version at 3.11 in build workflow Python 3.12.x is incompatible with the current version of node-gyp (9.4.0). For this reason, it is necessary to configure the "GitHub Actions" workflow to use the compatible Python 3.11.x until the next release of node-gyp (which should contain a fix for the breakage) is made. --- .github/workflows/build.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 18266bbd2..206b18790 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -304,7 +304,7 @@ jobs: if: fromJSON(matrix.config.container).image == null uses: actions/setup-python@v4 with: - python-version: '3.x' + python-version: '3.11.x' - name: Install Go uses: actions/setup-go@v4