Skip to content

Commit

Permalink
hacking
Browse files Browse the repository at this point in the history
  • Loading branch information
tomba committed Oct 6, 2023
1 parent a2f4bbf commit 8424391
Showing 1 changed file with 21 additions and 1 deletion.
22 changes: 21 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,29 @@ install = ['--tags=runtime,python-runtime']
#compile = ['-v']

[tool.cibuildwheel]

archs = ['x86_64', 'aarch64']

skip = "cp36-* cp37-* cp38-* pp* *_ppc64le *_i686 *_s390x"

manylinux-x86_64-image = "manylinux_2_28"
#skip = "cp36-* cp37-* cp38-* pp* *_ppc64le *_i686 *_s390x"
manylinux-i686-image = "manylinux_2_28"
manylinux-aarch64-image = "manylinux_2_28"
manylinux-ppc64le-image = "manylinux_2_28"
manylinux-s390x-image = "manylinux_2_28"

manylinux-pypy_x86_64-image = "manylinux_2_28"
manylinux-pypy_i686-image = "manylinux_2_28"
manylinux-pypy_aarch64-image = "manylinux_2_28"

build-verbosity = "3"


#[tool.cibuildwheel.linux]
#manylinux-x86_64-image = "manylinux2014"
#manylinux-aarch64-image = "manylinux2014"
#before-build = "bash {project}/tools/wheels/cibw_before_build_linux.sh {project}"


[tool.cibuildwheel.linux]
before-all = "yum install -y https://dl.fedoraproject.org/pub/epel/epel-release-latest-8.noarch.rpm && yum install -y fmt-devel"

0 comments on commit 8424391

Please sign in to comment.