diff --git a/.github/workflows/wheel.yml b/.github/workflows/wheel.yml deleted file mode 100644 index 61690bd34..000000000 --- a/.github/workflows/wheel.yml +++ /dev/null @@ -1,27 +0,0 @@ -name: Wheels - -on: - push: - branches: [ main ] - pull_request: - branches: [ main ] - -jobs: - build_wheels: - name: Build wheels on ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - fail-fast: false - matrix: - os: ["macos-11","windows-2019","ubuntu-20.04"] - - steps: - - uses: actions/checkout@v3 - - name: Build wheels - uses: pypa/cibuildwheel@v2.16.2 - env: - CIBW_PRERELEASE_PYTHONS: True - CIBW_ARCHS_MACOS: x86_64 universal2 - - uses: actions/upload-artifact@v2 - with: - path: ./wheelhouse/*.whl