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: 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

View File

@ -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",