Skip to content
Snippets Groups Projects
Commit ccc8febd authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Fix llvmlite==0.31.0 for Python 3.5

There are obviously no wheel packages for newer versions
available (yet), so the installation fails with
`llvm-config` not found since it tries to compile it.
parent fb2aa560
No related branches found
No related tags found
No related merge requests found
Pipeline #10642 failed
......@@ -5,9 +5,12 @@ The km3io setup script.
"""
from setuptools import setup
import sys
with open('requirements.txt') as fobj:
requirements = [l.strip() for l in fobj.readlines()]
if sys.version_info[:2] == (3, 5):
requirements.append("llvmlite==0.31.0")
try:
with open("README.rst") as fh:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment