diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 883255d..ffbac11 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -132,7 +132,7 @@ jobs: pytest rm -rf build/ - name: Build and test windows wheels - if: ${{env.DEPLOY == 'True' && startsWith(matrix.os, 'windows')}} + if: ${{startsWith(matrix.os, 'windows')}} run: | python -m pip install build python -m build -Csetup-args="-Dlink_blas_statically=True" @@ -179,7 +179,6 @@ jobs: echo "DEPLOY=$( [[ $GITHUB_EVENT_NAME == 'push' && $GITHUB_REF == 'refs/tags'* ]] && echo 'True' || echo 'False' )" >> $GITHUB_ENV - name: Build wheels - if: ${{env.DEPLOY == 'True'}} env: CIBW_MANYLINUX_X86_64_IMAGE: manylinux2014 CIBW_BUILD: "cp3${{env.PYTHON_SUBVERSION}}-*" @@ -193,10 +192,10 @@ jobs: CIBW_BUILD_VERBOSITY: 3 CIBW_TEST_REQUIRES: pytest CIBW_TEST_COMMAND: pytest {package} - uses: joerick/cibuildwheel@v2.11.3 + uses: joerick/cibuildwheel@v2.16.2 - name: Build source - if: ${{env.DEPLOY == 'True' && env.SINGLE_ACTION_CONFIG == 'True'}} + if: ${{env.SINGLE_ACTION_CONFIG == 'True'}} run: | python -m pip install build python -m build -Csetup-args="-Dlink_blas_statically=True" --outdir=wheelhouse diff --git a/pyproject.toml b/pyproject.toml index 9431baa..7b351d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,11 +7,11 @@ name = 'scs' version = "3.2.4" description = 'Splitting conic solver' readme = 'README.md' -requires-python = '>=3.8' +requires-python = '>=3.7' license = {file = 'LICENSE'} authors = [ {name = "Brendan O'Donoghue", email = "bodonoghue85@gmail.com"}] dependencies = [ 'numpy', 'scipy', -] \ No newline at end of file +]