Skip to content

Commit 4cd7bb0

Browse files
authored
[mlir] Remove dataclasses package from mlir requirements.txt (#87223)
The ``dataclasses`` package makes sense for Python 3.6, becauses ``dataclasses`` is only included in the standard library with 3.7 version. Now, 3.6 has reached EOL, so all current supported versions of Python (3.8, 3.9, 3.10, 3.11, 3.12) have this feature in their standard libraries. Therefore there's no need to install the ``dataclasses`` package now.
1 parent cbd48b1 commit 4cd7bb0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

mlir/python/requirements.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
numpy>=1.19.5, <=1.26
22
pybind11>=2.9.0, <=2.10.3
3-
PyYAML>=5.3.1, <=6.0.1
4-
dataclasses>=0.6, <=0.8
3+
PyYAML>=5.3.1, <=6.0.1

0 commit comments

Comments
 (0)