Skip to content

Commit

Permalink
enable PyPy 3.10 wheels as numpy is now supported (#219)
Browse files Browse the repository at this point in the history
* numpy wheels now exist: numpy/numpy#24728

* Remove unnecessary image override
  • Loading branch information
alexlancaster authored Sep 14, 2024
1 parent 6d4409e commit a6231df
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ testpaths = [

[tool.cibuildwheel]
skip = ["*-win32", "*_i686", # skip 32-bit builds
"pp37-*", "pp310-*", # skip certain PyPy configurations
"pp37-*", # skip certain PyPy configurations
"pp*_aarch64 ", # no numpy wheels for aarch64 on PyPy
"cp313-musllinux_x86_64", # problem with this version
"cp36-musllinux_*", "cp37-musllinux_*", "cp38-musllinux_*"] # older musllinux missing numpy wheels
Expand All @@ -32,11 +32,6 @@ environment = { PIP_ONLY_BINARY=":all:" }
select = "cp312-*linux*"
manylinux-x86_64-image = "manylinux_2_28"

[[tool.cibuildwheel.overrides]]
# for latest PyPy use newer manylinux image
select = "pp310-*linux*"
manylinux-x86_64-image = "manylinux_2_28"

[tool.cibuildwheel.linux]
# add aarch64 to default ("auto") architectures
archs = ["auto", "aarch64"]
Expand Down

0 comments on commit a6231df

Please sign in to comment.