From a47a9eddf387e0b309ee42c1479d1278065027f0 Mon Sep 17 00:00:00 2001 From: xadupre Date: Fri, 2 Jun 2023 17:46:16 +0200 Subject: [PATCH] remove one action building a wheel --- .github/workflows/wheels-linux.yml | 40 ------------------------------ 1 file changed, 40 deletions(-) delete mode 100644 .github/workflows/wheels-linux.yml diff --git a/.github/workflows/wheels-linux.yml b/.github/workflows/wheels-linux.yml deleted file mode 100644 index 21b0a22..0000000 --- a/.github/workflows/wheels-linux.yml +++ /dev/null @@ -1,40 +0,0 @@ -name: Build Wheel Linux - -on: - push: - branches: - - main - - 'releases/**' - -jobs: - build_wheels: - name: Build wheels on ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-latest] - - steps: - - uses: actions/checkout@v3 - - # Used to host cibuildwheel - - uses: actions/setup-python@v4 - with: - python-version: '3.10' - - - name: Install cibuildwheel - run: python -m pip install cibuildwheel - - - name: python version - run: python -V - - - name: Build wheels - run: python -m cibuildwheel --output-dir wheelhouse - # to supply options, put them in 'env', like: - env: - CIBW_BUILD: "cp310* cp311*" - # CIBW_SKIP: cp36-* cp37-* cp38-* cp39-* - - - uses: actions/upload-artifact@v3 - with: - path: ./wheelhouse/*.whl