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

Commit c61aaf7

Browse files
Hoyt KoepkeHoyt Koepke
andauthored
Pinned llvmlite version (#3146)
Pinned llvmlite to version 0.31.0 on python <=3.5. Co-authored-by: Hoyt Koepke <[email protected]>
1 parent 20b9df4 commit c61aaf7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/python/setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ def run(self):
136136
"scipy >= 1.1.0",
137137
"six >= 1.10.0",
138138
]
139-
if sys.version_info[0] == 2:
139+
if sys.version_info[0] == 2 or (sys.version_info[0] == 3 and sys.version_info[1] == 5):
140140
install_requires.append("llvmlite == 0.31.0")
141141

142142
if sys.platform == "darwin":

0 commit comments

Comments
 (0)