From 97bb763df0171ec6701f57ce05b0909e421aa0b3 Mon Sep 17 00:00:00 2001 From: John Veitch Date: Sat, 18 May 2024 16:43:02 +0100 Subject: [PATCH] Updates to CI recipe --- .github/workflows/pypi.yml | 11 +++-------- 1 file changed, 3 insertions(+), 8 deletions(-) diff --git a/.github/workflows/pypi.yml b/.github/workflows/pypi.yml index ea7489d..847e0e7 100644 --- a/.github/workflows/pypi.yml +++ b/.github/workflows/pypi.yml @@ -42,14 +42,9 @@ jobs: name: Install Python with: python-version: '3.x' - - - name: Install cibuildwheel - run: | - python -m pip install cibuildwheel==2.3.0 - name: Build wheels - run: | - python -m cibuildwheel --output-dir wheelhouse - - uses: actions/upload-artifact@v3 + uses: pypa/cibuildwheel@v2.18.0 + - uses: actions/upload-artifact@v4 with: path: ./wheelhouse/*.whl @@ -69,7 +64,7 @@ jobs: python -m pip install cython numpy setuptools_scm python setup.py sdist - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: path: dist/*.tar.gz