From dcb06dfe5905f2b2489485f0b9432bff753ff37f Mon Sep 17 00:00:00 2001 From: Sergio Pascual Date: Tue, 30 Jun 2020 18:41:31 +0200 Subject: [PATCH] Simplify gh action as wheel is universal --- .github/workflows/build.yml | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 49e67f23..14d20a18 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -26,22 +26,17 @@ jobs: with: python-version: '3.7' - - name: Install cibuildwheel + - name: Install wheel run: | - python -m pip install cibuildwheel==1.5.1 - - - name: Install Visual C++ for Python 2.7 - if: runner.os == 'Windows' - run: | - choco install vcpython27 -f -y + python -m pip install setuptools wheel - name: Build wheels run: | - python -m cibuildwheel --output-dir wheelhouse + python -m pip wheel . -w wheelhouse - uses: actions/upload-artifact@v2 with: - path: ./wheelhouse/*.whl + path: ./wheelhouse/megaradrp*.whl build_sdist: name: Build source distribution