From 5e01c9ffc3acbfda0aeac801f7ed151e28540dbd Mon Sep 17 00:00:00 2001 From: Mateusz Wronka <92746092+Bogdan2423@users.noreply.github.com> Date: Sat, 14 Oct 2023 16:22:31 +0200 Subject: [PATCH 1/2] Install setuptools --- buildPython.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildPython.js b/buildPython.js index fd9ceea72..108d6f86e 100644 --- a/buildPython.js +++ b/buildPython.js @@ -89,7 +89,7 @@ const saveFileName = (destFolder, fileName) => { }); measureTime('Installing build module for python', () => { - executeCommand(`${venvCommandPrefix} pip install build wheel ${venvCommandSuffix}`); + executeCommand(`${venvCommandPrefix} pip install build wheel setuptools ${venvCommandSuffix}`); }); measureTime('Building yaptide_converter', () => { From 9b6d56a2549ea6f62d33b666b211b1d7f12b5c20 Mon Sep 17 00:00:00 2001 From: Mateusz Wronka <92746092+Bogdan2423@users.noreply.github.com> Date: Sun, 15 Oct 2023 14:17:19 +0200 Subject: [PATCH 2/2] extend tests to python 3.12 --- .github/workflows/manual_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/manual_test.yml b/.github/workflows/manual_test.yml index 960c2989c..a70fa31ab 100644 --- a/.github/workflows/manual_test.yml +++ b/.github/workflows/manual_test.yml @@ -19,7 +19,7 @@ jobs: matrix: node-version: [18.x] operating-system: [ubuntu-latest, windows-latest] - python-version: ['3.9', '3.10', '3.11'] + python-version: ['3.9', '3.10', '3.11', '3.12'] # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ runs-on: ${{ matrix.operating-system }}