From 3d25fa21d0c77894e5d297073e61a8e6a20be6e5 Mon Sep 17 00:00:00 2001 From: Stella Laurenzo Date: Tue, 20 Jul 2021 06:56:05 -0700 Subject: [PATCH] Exclude pybind11 2.7.0 from MLIR python requirements. Appears to have a broken CMake installation. Reported bug: https://github.com/pybind/pybind11/issues/3136 --- mlir/python/requirements.txt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/mlir/python/requirements.txt b/mlir/python/requirements.txt index 51b35c22eef8..f76dcf6766ae 100644 --- a/mlir/python/requirements.txt +++ b/mlir/python/requirements.txt @@ -1,3 +1,4 @@ numpy -pybind11>=2.6.0 +# Version 2.7.0 excluded: https://github.com/pybind/pybind11/issues/3136 +pybind11>=2.6.0,!=2.7.0 PyYAML