forked from M-Labs/artiq
conda/setuptools: artiq needs python >= 3.4.3
This commit is contained in:
parent
b27254ba80
commit
0bf3b7a32b
|
@ -27,13 +27,13 @@ build:
|
||||||
|
|
||||||
requirements:
|
requirements:
|
||||||
build:
|
build:
|
||||||
- python
|
- python >=3.4.3
|
||||||
- setuptools
|
- setuptools
|
||||||
- numpy
|
- numpy
|
||||||
- migen
|
- migen
|
||||||
- pyelftools
|
- pyelftools
|
||||||
run:
|
run:
|
||||||
- python
|
- python >=3.4.3
|
||||||
- llvmlite-or1k
|
- llvmlite-or1k
|
||||||
- scipy
|
- scipy
|
||||||
- numpy
|
- numpy
|
||||||
|
|
3
setup.py
3
setup.py
|
@ -1,7 +1,10 @@
|
||||||
#!/usr/bin/env python3
|
#!/usr/bin/env python3
|
||||||
|
|
||||||
from setuptools import setup, find_packages
|
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 = [
|
requirements = [
|
||||||
"sphinx", "sphinx-argparse", "pyserial", "numpy", "scipy",
|
"sphinx", "sphinx-argparse", "pyserial", "numpy", "scipy",
|
||||||
|
|
Loading…
Reference in New Issue