Skip to content
Snippets Groups Projects
Commit b69f660f authored by Andreas Klöckner's avatar Andreas Klöckner Committed by Andreas Klöckner
Browse files

Skip Python 3.12 in wheel build for now

parent 531c40e1
No related branches found
No related tags found
No related merge requests found
......@@ -8,8 +8,10 @@ build-backend = "setuptools.build_meta"
test-command = "pytest {project}/test"
test-extras = ["test"]
# Skipping 3.12 for now because of
# https://github.com/numpy/numpy/issues/22623
[tool.cibuildwheel.linux]
skip = ["pp37*", "cp36-*", "cp37-*"]
skip = ["pp37*", "cp36-*", "cp37-*", "cp312-*"]
test-command = ""
before-all = [
"yum install -y git openssl-devel ruby",
......@@ -26,13 +28,13 @@ before-all = [
repair-wheel-command = "auditwheel repair -w {dest_dir} --lib-sdir=/.libs {wheel}"
[tool.cibuildwheel.macos]
skip = ["pp*", "cp36-*", "cp37-*"]
skip = ["pp*", "cp36-*", "cp37-*", "cp312-*"]
before-all = "bash {package}/scripts/build-ocl-macos.sh"
test-command = "pytest {project}/test/test_array.py" # same limitation as conda-forge
# https://github.com/conda-forge/pyopencl-feedstock/blob/6f3c5de59b18c9518abba3cb94f6ae92964553f8/recipe/meta.yaml#L62-L63
[tool.cibuildwheel.windows]
skip = ["*-win32", "pp*", "cp36-*", "cp37-*"]
skip = ["*-win32", "pp*", "cp36-*", "cp37-*", "cp312-*"]
test-command = ""
before-all = "bash {package}/scripts/build-ocl-windows.sh"
before-build = "python configure.py --cl-inc-dir=D:/a/pyopencl/pyopencl/OpenCL-Headers/install/include --cl-lib-dir=\"C:/Program Files/OpenCL-ICD-Loader/lib\""
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment