From b16df88fc367c768591308088b080732aacae1fa Mon Sep 17 00:00:00 2001 From: dmaljovec Date: Mon, 23 Oct 2023 14:00:36 -0600 Subject: [PATCH] changes to publish before pulling John's version in --- .github/workflows/publish.yaml | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 5022f54..5fcef73 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -22,23 +22,17 @@ jobs: build_wheels: needs: push_tag - name: Build wheels on ${{ matrix.os }} - runs-on: ${{ matrix.os }} - strategy: - matrix: - os: [ubuntu-20.04, windows-2022, macOS-11] - + name: Build wheel + runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 - uses: actions/setup-python@v3 - name: Install prerequisites run: python -m pip install cibuildwheel==2.11.2 - - name: Build wheels run: | git fetch --depth=1 origin +refs/tags/*:refs/tags/* python -m cibuildwheel --output-dir wheelhouse - - uses: actions/upload-artifact@v3 with: path: ./wheelhouse/*.whl @@ -58,7 +52,6 @@ jobs: - name: Build source distribution run: | git fetch --depth=1 origin +refs/tags/*:refs/tags/* - make python -m pip install setuptools_scm[toml]>=6.2 python setup.py sdist -d wheelhouse - run: |