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

Commit

Permalink
Pinned llvmlite to version 0.31.0 on python <=3.5.
Browse files Browse the repository at this point in the history
  • Loading branch information
Hoyt Koepke committed Apr 27, 2020
1 parent 223168c commit ce59c66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ def run(self):
"scipy >= 1.1.0",
"six >= 1.10.0",
]
if sys.version_info[0] == 2:
if sys.version_info[0] == 2 or (sys.version_info[0] == 3 and sys.version_info[1] == 5):
install_requires.append("llvmlite == 0.31.0")

if sys.platform == "darwin":
Expand Down

0 comments on commit ce59c66

Please sign in to comment.