Skip to content
This repository was archived by the owner on Dec 21, 2023. It is now read-only.

Commit 5b9e95b

Browse files
Hoyt KoepkeHoyt Koepke
andauthored
Pinned llvm version to one that compiles correctly with python 2.7 (#3137)
llvmlite is now pinned to 0.31.0. Co-authored-by: Hoyt Koepke <[email protected]>
1 parent 0983556 commit 5b9e95b

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/python/setup.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -136,6 +136,9 @@ def run(self):
136136
"scipy >= 1.1.0",
137137
"six >= 1.10.0",
138138
]
139+
if sys.version_info[0] == 2:
140+
install_requires.append("llvmlite == 0.31.0")
141+
139142
if sys.platform == "darwin":
140143
install_requires.append("tensorflow >= 2.0.0")
141144
else:

0 commit comments

Comments
 (0)