Skip to content

Commit f9340e5

Browse files
committed
CI: Include Windows build in GHA.
1 parent a3acfc3 commit f9340e5

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,12 @@ jobs:
142142
matrix:
143143
#os: [macos-10.15, windows-latest]
144144
#os: [macos-10.15, macOS-M1]
145-
os: [macos-11.0]
146-
python_version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
145+
os: [macos-11.0, windows-latest]
146+
python_version: ["2.7", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11", "3.12-dev"]
147+
148+
include:
149+
- python_version: "3.12-dev"
150+
allowed_failure: true
147151

148152
runs-on: ${{ matrix.os }}
149153
env: { MACOSX_DEPLOYMENT_TARGET: 11.0 }
@@ -157,7 +161,9 @@ jobs:
157161
python-version: ${{ matrix.python_version }}
158162

159163
- name: Install dependencies
160-
run: python -m pip install -U pip setuptools wheel && python -m pip install --pre -r requirements.txt
164+
run: |
165+
python -m pip install -U pip setuptools wheel
166+
python -m pip install --pre -r requirements.txt
161167
162168
- name: Build wheels
163169
run: make sdist wheel

0 commit comments

Comments
 (0)