Skip to content

Commit 9a13f0e

Browse files
authored
Update Python version matrix and installation steps
1 parent cfd043b commit 9a13f0e

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/pip_install_pypiwin32.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,17 @@ jobs:
1515
strategy:
1616
fail-fast: false
1717
matrix:
18-
python-version: ['3.10', 3.12, 3.14, 3.14t]
18+
python-version: [3.9, 3.12, 3.14, 3.14t]
1919
os: [windows-latest]
2020
runs-on: ${{ matrix.os }}
2121
steps:
2222
- uses: actions/checkout@v5
2323
- uses: actions/setup-python@v6
2424
with:
2525
python-version: ${{ matrix.python-version }}
26-
- if: matrix.python-version == '3.10' # Before 2to3 was removed.
27-
run: pip install --editable .
26+
# https://github.com/pypa/setuptools/blob/47b724639703d0c512f275a316dbb99e6c226e38/CHANGES.rst#v5800
27+
- if: matrix.python-version == '3.9' # Before 2to3 for builds was removed.
28+
run: |
29+
pip install ´setuptools<58.0.0'
30+
pip install --editable .
2831
- run: pip install pypiwin32

0 commit comments

Comments
 (0)