Skip to content
Snippets Groups Projects
Commit 657223e1 authored by Zineb Aly's avatar Zineb Aly
Browse files

Merge branch 'master' of git.km3net.de:km3py/km3io

parents 91a156ef ccc8febd
No related branches found
No related tags found
No related merge requests found
Pipeline #10653 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