Skip to content

Commit 6364fc2

Browse files
[TESTING] Possible fix for regression Part 2.
### ChangeLog: Changes in file .github/workflows/Tests.yml: jobs:
1 parent 05635b2 commit 6364fc2

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/Tests.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff 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";

0 commit comments

Comments
 (0)