Skip to content

Commit 0bf3b7a

Browse files
committedJun 3, 2015
conda/setuptools: artiq needs python >= 3.4.3
1 parent b27254b commit 0bf3b7a

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed
 

Diff for: ‎conda/artiq/meta.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@ build:
2727

2828
requirements:
2929
build:
30-
- python
30+
- python >=3.4.3
3131
- setuptools
3232
- numpy
3333
- migen
3434
- pyelftools
3535
run:
36-
- python
36+
- python >=3.4.3
3737
- llvmlite-or1k
3838
- scipy
3939
- numpy

Diff for: ‎setup.py

+3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
11
#!/usr/bin/env python3
22

33
from setuptools import setup, find_packages
4+
import sys
45

6+
if sys.version_info[:3] < (3, 4, 3):
7+
raise Exception("You need at least Python 3.4.3 to run ARTIQ")
58

69
requirements = [
710
"sphinx", "sphinx-argparse", "pyserial", "numpy", "scipy",

0 commit comments

Comments
 (0)
Please sign in to comment.