From e4f30d266592d948705a68d904c6f292428f1f50 Mon Sep 17 00:00:00 2001 From: Matthew Ballance Date: Sat, 21 Oct 2023 12:23:08 -0700 Subject: [PATCH] XX Signed-off-by: Matthew Ballance --- .github/workflows/ci.yaml | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 548c8c9..ebfa47b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -76,18 +76,17 @@ jobs: - name: Fetch dependencies run: | python3 --version - python3 -m pip install cibuildwheel twine + python3 -m pip install cython setuptools wheel build twine - name: Build/Test Package env: - CIBW_BUILD: ${{ matrix.spec }} - CIBW_BEFORE_BUILD: pip install Cython twine - CIBW_BUILD_VERBOSITY: 1 +# CIBW_BUILD: ${{ matrix.spec }} +# CIBW_BEFORE_BUILD: pip install Cython twine +# CIBW_BUILD_VERBOSITY: 1 # MACOX_DEPLOYMENT_TARGET: ${{ matrix.deployment_target || '10.9' }} SDKROOT: ${{ matrix.sdkroot || 'macosx' }} run: | python3 -V - python3 -m pip install -U --user cibuildwheel twine - python3 -m cibuildwheel --platform auto --output-dir dist . + python3 setup.py bdist_wheel ls dist - name: Publish to PyPi if: startsWith(github.ref, 'refs/heads/main')