diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index d117eec9..4db90bd8 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -29,10 +29,10 @@ jobs: # Used to host cibuildwheel - name: Build wheel - uses: pypa/cibuildwheel@v3.2.0 + uses: pypa/cibuildwheel@v3.2.1 with: output-dir: wheelhouse - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: cibw-wheels-${{ matrix.os }} path: ./wheelhouse/*.whl @@ -46,7 +46,7 @@ jobs: run: source etc/make-libsemigroups.sh && sudo make install - name: Build SDist run: pipx run build --sdist - - uses: actions/upload-artifact@v4 + - uses: actions/upload-artifact@v5 with: name: sdist path: dist/*.tar.gz @@ -70,7 +70,7 @@ jobs: steps: - name: Download wheels and sdist artifacts - uses: actions/download-artifact@v5 + uses: actions/download-artifact@v6 with: # Here, we could specify a name of an artifact, or a pattern that # matches the names of artifacts. However, by not specifying these diff --git a/pyproject.toml b/pyproject.toml index 778d2197..01c48642 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -105,6 +105,7 @@ test = ["pytest==8.4.2"] [tool.cibuildwheel] build-frontend = "build" build-verbosity = 1 +skip = "cp314t*" test-command = "pytest {project}/tests" test-groups = ["test"]