From 9123c3aa9a9a9941a6804c95b53d4968822cb1ea Mon Sep 17 00:00:00 2001 From: Scott Beddall <45376673+scbedd@users.noreply.github.com> Date: Mon, 28 Oct 2024 11:24:55 -0700 Subject: [PATCH] remove github action that is always failing and wasn't intentionally added (#409) --- .github/workflows/wheel.yml | 27 --------------------------- 1 file changed, 27 deletions(-) delete mode 100644 .github/workflows/wheel.yml 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