From e376cb63349c7f78ac97d7c2208b5330a7351a9e Mon Sep 17 00:00:00 2001 From: Vincent Fazio Date: Wed, 6 Nov 2024 08:22:48 -0600 Subject: [PATCH] bindings: python: generate CPython 3.13 wheels Support for CPython 3.13 was added to cibuildwheel in 2.21.3 and advertised by build in 1.2.2.post1. Update the dependencies used by generate_pypi_artifacts.sh so CPython 3.13 wheels are now generated. Closes: https://github.com/brgl/libgpiod/issues/106 Signed-off-by: Vincent Fazio Link: https://lore.kernel.org/r/20241106142248.305219-1-vfazio@xes-inc.com Signed-off-by: Bartosz Golaszewski --- bindings/python/generate_pypi_artifacts.sh | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/bindings/python/generate_pypi_artifacts.sh b/bindings/python/generate_pypi_artifacts.sh index c2fb79f..d5dbd31 100755 --- a/bindings/python/generate_pypi_artifacts.sh +++ b/bindings/python/generate_pypi_artifacts.sh @@ -108,8 +108,7 @@ python3 -m "${venv_module}" .venv venv_python="${temp_dir}/.venv/bin/python" # Install build dependencies -# cibuildwheel 2.18.1 pins the toolchain containers to 2024-05-13-0983f6f -${venv_python} -m pip install build==1.2.1 cibuildwheel==2.18.1 +${venv_python} -m pip install build==1.2.2.post1 cibuildwheel==2.21.3 LIBGPIOD_VERSION=${src_version} ${venv_python} -m build --sdist --outdir ./dist "${source_dir}" sdist=$(find ./dist -name '*.tar.gz') -- 2.30.2