We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 57f103a + c69e3aa commit 028c9edCopy full SHA for 028c9ed
setup.py
@@ -34,9 +34,9 @@
34
_have_setuptools = False
35
36
setuptools_kwargs = {}
37
+min_numpy_ver = '1.6'
38
if sys.version_info[0] >= 3:
39
- min_numpy_ver = 1.6
40
if sys.version_info[1] >= 3: # 3.3 needs numpy 1.7+
41
min_numpy_ver = "1.7.0b2"
42
@@ -45,6 +45,7 @@
45
'install_requires': ['python-dateutil >= 2',
46
'pytz',
47
'numpy >= %s' % min_numpy_ver],
48
+ 'setup_requires': ['numpy >= %s' % min_numpy_ver],
49
'use_2to3_exclude_fixers': ['lib2to3.fixes.fix_next',
50
],
51
}
@@ -53,10 +54,12 @@
53
54
"\n$ pip install distribute")
55
56
else:
57
+ min_numpy_ver = '1.6.1'
58
setuptools_kwargs = {
59
'install_requires': ['python-dateutil',
60
- 'numpy >= 1.6.1'],
61
+ 'numpy >= %s' % min_numpy_ver],
62
63
'zip_safe': False,
64
65
0 commit comments