From e8ddd04ca5886795c381f5b94c4f8a8b54464e42 Mon Sep 17 00:00:00 2001 From: Parth Nobel Date: Mon, 2 Sep 2024 17:48:53 -0700 Subject: [PATCH] Kills the build action --- .github/workflows/build.yml | 35 ----------------------------------- 1 file changed, 35 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index e006bd3..6879e3e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -16,38 +16,6 @@ concurrency: jobs: - build: - runs-on: ${{ matrix.os }} - defaults: - run: - shell: bash -l {0} - strategy: - fail-fast: false - matrix: - os: [ ubuntu-24.04, macos-12, windows-2022 ] - python-version: [ 3.9, "3.10", "3.11", "3.12" ] - - env: - PYTHON_VERSION: ${{ matrix.python-version }} - - steps: - - uses: actions/checkout@v4 - - uses: conda-incubator/setup-miniconda@v2 - with: - auto-update-conda: true - python-version: ${{ matrix.python-version }} - channels: conda-forge,anaconda - - name: Install - # scipy and numpy versions are chosen to match cvxpy - run: | - pip install cvxpy pytest - python -m pip install . - - - name: Test - run: | - pytest - rm -rf build/ - build_wheels: name: Build wheels on ${{ matrix.os }} runs-on: ${{ matrix.os }} @@ -58,9 +26,6 @@ jobs: steps: - uses: actions/checkout@v4 - - name: Install - run: | - pip install numpy scipy cvxpy pytest - name: Build wheels uses: pypa/cibuildwheel@v2.20.0