@@ -3,7 +3,7 @@ name = "python-flint"
33description = " Bindings for FLINT"
44version = " 0.7.0a5"
55# This needs to be in sync with README, cibuildwheel and CI config.
6- requires-python = " >= 3.10 "
6+ requires-python = " >= 3.11 "
77authors = [
88 {
name =
" Fredrik Johansson" ,
email =
" [email protected] " },
99]
@@ -81,14 +81,15 @@ package = "flint"
8181[tool .cibuildwheel ]
8282# requires-python needs to keep in sync with this and also the list of Python
8383# versions the wheels are tested against in CI.
84- build = " cp310-* cp311-* cp312-* cp313-* pp310 -*"
84+ build = " cp311-* cp312-* cp313-*" # pp311 -*"
8585skip = " *-win32 *-manylinux_i686 *-musllinux_*"
8686
8787# This is needed for free-threaded wheels:
8888# build = "cp313t-*"
8989# free-threaded-support = true
9090
9191manylinux-x86_64-image = " manylinux2014"
92+ manylinux-aarch64-image = " manylinux2014"
9293manylinux-i686-image = " manylinux2014"
9394test-command = " python -c \" import flint; print(str(flint.fmpz(2)))\" "
9495
@@ -106,7 +107,7 @@ PKG_CONFIG_PATH = "$(pwd)/.local/lib/pkgconfig"
106107# PKG_CONFIG_PATH = "$(pwd)/.local/lib/pkgconfig:$PKG_CONFIG_PATH"
107108
108109[tool .cibuildwheel .linux ]
109- before-all = " bin/cibw_before_all_linux .sh"
110+ before-all = " bin/cibw_before_all_linux_$(uname -m) .sh"
110111
111112[tool .cibuildwheel .macos ]
112113before-all = " bin/cibw_before_all_macosx_$(uname -m).sh"
0 commit comments