Skip to content

Commit

Permalink
Updated build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
tn3w authored and tn3w committed Aug 24, 2024
1 parent ada13d5 commit 4dc68ad
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
strategy:
matrix:
python-version: [3.8, 3.9, 3.10]
os: [ubuntu-latest, macos-latest, windows-latest]

os: [ubuntu-latest, windows-latest]
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -25,8 +25,6 @@ jobs:
- name: Build wheels
run: |
if [ ${{ matrix.os }} == 'ubuntu-latest' ]; then
cibuildwheel --output-dir wheelhouse
fi
cibuildwheel --output-dir wheelhouse
env:
CIBW_BUILD: "cp36-abi3-* cp37-abi3-* cp38-abi3-* cp39-abi3-* cp310-abi3-*"
CIBW_BUILD: "cp38-abi3-* cp39-abi3-* cp310-abi3-*"

0 comments on commit 4dc68ad

Please sign in to comment.