Skip to content

Commit

Permalink
update buildwheels.yml to include separate Windows builds for Python …
Browse files Browse the repository at this point in the history
…3.11 and 3.12
  • Loading branch information
dwr-psandhu committed Dec 20, 2024
1 parent 3c39611 commit 31fba9a
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/buildwheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,15 @@ jobs:

strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: ["3.11"]
include:
# Linux build (single entry as cibuildwheel handles both Python versions)
- os: ubuntu-latest
python-version: "3.11"
# Windows builds (separate entries for each Python version)
- os: windows-latest
python-version: "3.11"
- os: windows-latest
python-version: "3.12"

steps:
- name: Checkout repository
Expand Down

0 comments on commit 31fba9a

Please sign in to comment.