Xqt submitted this change.

View Change

Approvals: Xqt: Verified; Looks good to me, approved
[tests] urllib3<2.0 is required for Python 3.7.0/3.7.1

Change-Id: I61458e5b9648441f1b39bb430c468cee7b21988f
---
M .github/workflows/windows_tests.yml
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.github/workflows/windows_tests.yml b/.github/workflows/windows_tests.yml
index 12a560b..590bf63 100644
--- a/.github/workflows/windows_tests.yml
+++ b/.github/workflows/windows_tests.yml
@@ -21,7 +21,6 @@

strategy:
fail-fast: false
- max-parallel: 10

matrix:
python-version: [ "3.7.1", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12", "3.13.0-alpha - 3.13.0" ]
@@ -42,12 +41,14 @@
architecture: ${{ matrix.python-arch }}

- name: Install dependencies
+ shell: powershell
run: |
git submodule update --init
python --version
python -c "import struct; print('PYTHON_ARCH:', struct.calcsize('P') << 3)"
python -m pip install --upgrade pip
pip --version
+ if ('${{ matrix.python-version }}' -eq '3.7.1') {pip install "urllib3<2.0"}
pip install -r dev-requirements.txt
pip install -r requirements.txt
pip install wikitextparser

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

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