You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@buildstream.apache.org by tv...@apache.org on 2022/10/18 06:49:42 UTC

[buildstream] branch tristan/fix-cython-version created (now dd94d355c)

This is an automated email from the ASF dual-hosted git repository.

tvb pushed a change to branch tristan/fix-cython-version
in repository https://gitbox.apache.org/repos/asf/buildstream.git


      at dd94d355c pyproject.toml: Require at least the first version of cython which supports 3.10

This branch includes the following new commits:

     new dd94d355c pyproject.toml: Require at least the first version of cython which supports 3.10

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[buildstream] 01/01: pyproject.toml: Require at least the first version of cython which supports 3.10

Posted by tv...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

tvb pushed a commit to branch tristan/fix-cython-version
in repository https://gitbox.apache.org/repos/asf/buildstream.git

commit dd94d355c06e73b4ea72c302ec0383dd868e1bb6
Author: Tristan van Berkom <tr...@codethink.co.uk>
AuthorDate: Tue Oct 18 15:48:52 2022 +0900

    pyproject.toml: Require at least the first version of cython which supports 3.10
---
 pyproject.toml | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/pyproject.toml b/pyproject.toml
index ea9f0df05..5c9f66612 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -4,7 +4,8 @@ requires = [
     "setuptools>=36.6.0",
     # In order to build wheels, and as required by PEP 517
     "wheel",
-    "Cython",
+    # Require a new enough cython for the python versions we support
+    "Cython>=0.29.25",
     "packaging",
 ]
 build-backend = "setuptools.build_meta"