File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -173,7 +173,7 @@ jobs:
173173 timeout-minutes : 10
174174 strategy :
175175 matrix :
176- os : [ubuntu-latest, macos-latest]
176+ os : [ubuntu-latest, macos-latest, windows-latest ]
177177 python-version : ["3.10", "3.11", "3.12", "3.13"]
178178 env :
179179 OS : ${{ matrix.os }}
@@ -192,6 +192,9 @@ jobs:
192192 uses : actions/setup-python@v5
193193 with :
194194 python-version : ${{ matrix.python-version }}
195+ - name : Fix braindead windows ${{ matrix.python-version }} on ${{ matrix.os }}
196+ if : ${{ !cancelled() && runner.os == 'Windows' }}
197+ run : pip install --upgrade pip
195198 - name : Install dependencies for python ${{ matrix.python-version }} on ${{ matrix.os }}
196199 run : |
197200 pip install --upgrade "pip>=22.0" "setuptools>=75.0" "wheel>=0.44" "build>=1.2.1";
You can’t perform that action at this time.
0 commit comments