We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3d1a92 commit ad47f6aCopy full SHA for ad47f6a
.github/workflows/pip_install_pypiwin32.yml
@@ -15,13 +15,14 @@ jobs:
15
strategy:
16
fail-fast: false
17
matrix:
18
- python-version: [3.x, 3.14t]
+ python-version: [3.12, 3.x, 3.14t]
19
os: [windows-latest]
20
runs-on: ${{ matrix.os }}
21
steps:
22
- uses: actions/checkout@v5
23
- uses: actions/setup-python@v6
24
with:
25
python-version: ${{ matrix.python-version }}
26
- - run: pip install --editable .
+ - if: matrix.python-version == '3.12' # Before 2to3 was removed.
27
+ run: pip install --editable .
28
- run: pip install pypiwin32
0 commit comments