This is an automated email from the ASF dual-hosted git repository. akitouni pushed a commit to branch abderrahim/debug-push in repository https://gitbox.apache.org/repos/asf/buildstream.git
commit 6ec4ff096639a80433f66c4209bbffb70d3fc263 Author: Abderrahim Kitouni <akito...@gnome.org> AuthorDate: Fri May 23 20:40:46 2025 +0100 pyproject.toml: prohibit broken cython version See https://github.com/cython/cython/issues/6905 --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7c6008b57..296e76c13 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -18,7 +18,7 @@ requires = [ # In order to build wheels, and as required by PEP 517 "wheel", # Require a new enough cython for the python versions we support - "Cython>=0.29.25", + "Cython>=0.29.25,!=3.1.1", "packaging", ] build-backend = "setuptools.build_meta"