Skip to content

Commit 97fbbd6

Browse files
committed
[mlir] Relax version requirement for PyYAML in mlir
Some Ubuntu 20.04 images come with PyYAML 5.3.1 pre-installed through distutils. This makes pip very angry. See yaml/pyyaml#349. Since older versions of PyYAML should work for mlir, relax the version requirement to ease developer setup. Reviewed By: stellaraccident Differential Revision: https://reviews.llvm.org/D143523
1 parent 7045966 commit 97fbbd6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mlir/python/requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
numpy>=1.19.5, <=1.23.5
22
pybind11>=2.8.0, <=2.10.3
3-
PyYAML==6.0
3+
PyYAML>= 5.3.1, <=6.0
44
dataclasses>=0.6, <=0.8

0 commit comments

Comments
 (0)