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
22 changes: 11 additions & 11 deletions .github/workflows/packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
run: python setup.py sdist

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: sdist
path: ./dist/*
Expand All @@ -35,7 +35,7 @@ jobs:
uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v3.2.1
uses: pypa/cibuildwheel@v3.3.1
env:
CIBW_BUILD: ${{matrix.pyver}}-*
CIBW_ARCHS_LINUX: auto
Expand All @@ -52,7 +52,7 @@ jobs:
*-macosx_universal2:arm64

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: wheel-${{ matrix.pyver }}-${{ matrix.os }}
path: ./wheelhouse/*.whl
Expand All @@ -64,7 +64,7 @@ jobs:
fail-fast: false
matrix:
pyver: [cp310, cp311, cp312, cp313, cp313t, cp314, cp314t]
arch: [aarch64, ppc64le, riscv64]
arch: [aarch64, armv7l, ppc64le, riscv64]

steps:
- name: Checkout repos
Expand All @@ -74,14 +74,14 @@ jobs:
uses: docker/setup-qemu-action@v3

- name: Build wheels
uses: pypa/cibuildwheel@v3.2.1
uses: pypa/cibuildwheel@v3.3.1
env:
CIBW_BUILD: ${{matrix.pyver}}-*
CIBW_ARCHS: ${{matrix.arch}}
CIBW_TEST_COMMAND: pytest --color=yes -m 'not embedded and not skip_on_qemu' {project}/tests

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: wheel-${{ matrix.pyver }}-${{ matrix.arch }}
path: ./wheelhouse/*.whl
Expand All @@ -99,7 +99,7 @@ jobs:
uses: actions/checkout@v4

- name: Build wheels
uses: pypa/cibuildwheel@v3.2.1
uses: pypa/cibuildwheel@v3.3.1
env:
CIBW_BUILD: pp*
CIBW_TEST_COMMAND: pytest --color=yes -m 'not embedded' {project}/tests
Expand All @@ -113,7 +113,7 @@ jobs:
pp*-macosx_*

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: wheels-pp-${{ matrix.os }}
path: ./wheelhouse/*.whl
Expand All @@ -130,14 +130,14 @@ jobs:
uses: docker/setup-qemu-action@v3

- name: Build wheels
uses: pypa/cibuildwheel@v3.2.1
uses: pypa/cibuildwheel@v3.3.1
env:
CIBW_BUILD: pp*

# Tests mostly fail because of some confusion with the python interpreter

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v6
with:
name: wheels-pp-cross
path: ./wheelhouse/*.whl
Expand All @@ -153,7 +153,7 @@ jobs:
- build-cross-wheel-pypy
steps:
- name: Merge Artifacts
uses: actions/upload-artifact/merge@v4
uses: actions/upload-artifact/merge@v6
with:
name: setproctitle-artifacts
delete-merged: true
4 changes: 0 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,3 @@ enable = [
"pypy",
]
test-extras = ["test"]

[[tool.cibuildwheel.overrides]]
select = "*riscv64*"
before-all = ["dnf install -y --setopt=install_weak_deps=False procps-ng"]
Loading