Xqt submitted this change.

View Change


Approvals: Xqt: Verified; Looks good to me, approved
[tests] Install setuptools with Python >= 3.12 for setup tests

Change-Id: Ic788e5a9530d12b7e242bfbc1d66f47d1af7f1bc
---
M .github/workflows/pywikibot-ci.yml
1 file changed, 13 insertions(+), 0 deletions(-)

diff --git a/.github/workflows/pywikibot-ci.yml b/.github/workflows/pywikibot-ci.yml
index 276dc01..5518b66 100644
--- a/.github/workflows/pywikibot-ci.yml
+++ b/.github/workflows/pywikibot-ci.yml
@@ -85,6 +85,10 @@
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
pip install wikitextparser

+ - name: Install setuptools
+ if: ${{ matrix.python-version >= '3.12' }}
+ run: pip install setuptools
+
- name: Generate family files
run: |
if [ ${{matrix.family || 0}} == wpbeta ]; then

To view, visit change 1008128. To unsubscribe, or for help writing mail filters, visit settings.

Gerrit-Project: pywikibot/core
Gerrit-Branch: master
Gerrit-Change-Id: Ic788e5a9530d12b7e242bfbc1d66f47d1af7f1bc
Gerrit-Change-Number: 1008128
Gerrit-PatchSet: 1
Gerrit-Owner: Xqt <info@gno.de>
Gerrit-Reviewer: Xqt <info@gno.de>
Gerrit-MessageType: merged