conda/setuptools: artiq needs python >= 3.4.3

This commit is contained in:
Yann Sionneau 2015-06-03 15:56:54 +02:00
parent b27254ba80
commit 0bf3b7a32b
2 changed files with 5 additions and 2 deletions

View File

@ -27,13 +27,13 @@ build:
requirements:
build:
- python
- python >=3.4.3
- setuptools
- numpy
- migen
- pyelftools
run:
- python
- python >=3.4.3
- llvmlite-or1k
- scipy
- numpy

View File

@ -1,7 +1,10 @@
#!/usr/bin/env python3
from setuptools import setup, find_packages
import sys
if sys.version_info[:3] < (3, 4, 3):
raise Exception("You need at least Python 3.4.3 to run ARTIQ")
requirements = [
"sphinx", "sphinx-argparse", "pyserial", "numpy", "scipy",