From 12c0e845e55e71af4f0ffe35a89b7508bb9c765e Mon Sep 17 00:00:00 2001 From: WolframRhodium Date: Wed, 6 Sep 2023 08:24:41 +0800 Subject: [PATCH] .github/workflows/windows.yml: upgrade setuptools for python 3.10/3.11 plugin build setuptools#1631 --- .github/workflows/windows.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index 2fb85178..38d2f5d1 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -139,9 +139,11 @@ jobs: py -3.12-${{ matrix.bits }} -m pip install . --no-deps -v - name: Build Python 3.11 plugin run: | + py -3.11-${{ matrix.bits }} -m pip install setuptools==65.6.1 -v py -3.11-${{ matrix.bits }} -m pip install . --no-deps -v - name: Build Python 3.10 plugin run: | + py -3.10-${{ matrix.bits }} -m pip install setuptools==65.6.1 -v py -3.10-${{ matrix.bits }} -m pip install . --no-deps -v - name: Build Python 3.9 plugin run: |