Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down
1 change: 1 addition & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"]

Expand Down