File tree 1 file changed +5
-2
lines changed
1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change 34
34
_have_setuptools = False
35
35
36
36
setuptools_kwargs = {}
37
+ min_numpy_ver = '1.6'
37
38
if sys .version_info [0 ] >= 3 :
38
39
39
- min_numpy_ver = 1.6
40
40
if sys .version_info [1 ] >= 3 : # 3.3 needs numpy 1.7+
41
41
min_numpy_ver = "1.7.0b2"
42
42
45
45
'install_requires' : ['python-dateutil >= 2' ,
46
46
'pytz' ,
47
47
'numpy >= %s' % min_numpy_ver ],
48
+ 'setup_requires' : ['numpy >= %s' % min_numpy_ver ],
48
49
'use_2to3_exclude_fixers' : ['lib2to3.fixes.fix_next' ,
49
50
],
50
51
}
53
54
"\n $ pip install distribute" )
54
55
55
56
else :
57
+ min_numpy_ver = '1.6.1'
56
58
setuptools_kwargs = {
57
59
'install_requires' : ['python-dateutil' ,
58
60
'pytz' ,
59
- 'numpy >= 1.6.1' ],
61
+ 'numpy >= %s' % min_numpy_ver ],
62
+ 'setup_requires' : ['numpy >= %s' % min_numpy_ver ],
60
63
'zip_safe' : False ,
61
64
}
62
65
You can’t perform that action at this time.
0 commit comments