[Mlir-commits] [mlir] 3d25fa2 - Exclude pybind11 2.7.0 from MLIR python requirements.
Stella Laurenzo
llvmlistbot at llvm.org
Tue Jul 20 06:57:08 PDT 2021
Author: Stella Laurenzo
Date: 2021-07-20T06:56:05-07:00
New Revision: 3d25fa21d0c77894e5d297073e61a8e6a20be6e5
URL: https://github.com/llvm/llvm-project/commit/3d25fa21d0c77894e5d297073e61a8e6a20be6e5
DIFF: https://github.com/llvm/llvm-project/commit/3d25fa21d0c77894e5d297073e61a8e6a20be6e5.diff
LOG: 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
Added:
Modified:
mlir/python/requirements.txt
Removed:
################################################################################
diff --git a/mlir/python/requirements.txt b/mlir/python/requirements.txt
index 51b35c22eef85..f76dcf6766ae0 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
More information about the Mlir-commits
mailing list