From 676808e0d34f488d55392edcca424d602d6dd756 Mon Sep 17 00:00:00 2001 From: Luke Hutton Date: Tue, 18 Jul 2023 16:44:43 +0000 Subject: [PATCH] [CI] Pin cython version to fix cython compilation Cython 3.0.0 was recently released, but it is incompatible with the current .pxi definitions in python/tvm/_ffi/_python. Pinning the cython version until a working fix is created. Posting this PR as an alternative to https://github.com/apache/tvm/pull/15346. Change-Id: Id817aea375e1ed84c807c265ca4cc42c1757bca0 --- docker/install/ubuntu_install_python_package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/install/ubuntu_install_python_package.sh b/docker/install/ubuntu_install_python_package.sh index 41c8697f4234..ba5d47bfcc48 100755 --- a/docker/install/ubuntu_install_python_package.sh +++ b/docker/install/ubuntu_install_python_package.sh @@ -25,7 +25,7 @@ pip3 install --upgrade \ "Pygments>=2.4.0" \ attrs \ cloudpickle \ - cython \ + cython==0.29.34 \ decorator \ mypy \ numpy==1.21.* \