We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97a997e commit 4fbfedfCopy full SHA for 4fbfedf
pysces/PyscesModel.py
@@ -77,8 +77,8 @@
77
78
79
# Scipy version check
80
-if int(scipy.version.version.split('.')[0]) < 1 and int(scipy.version.version.split('.')[1]) < 6:
81
- print '\nINFO: Your version of SciPy (' + scipy.version.version + ') might be too old\n\tVersion 0.3.x or newer is strongly recommended\n'
+if int(scipy.__version__.split('.')[0]) < 1 and int(scipy.__version__.split('.')[1]) < 6:
+ print '\nINFO: Your version of SciPy (' + scipy.version.version + ') might be too old\n\tVersion 0.6.x or newer is strongly recommended\n'
82
else:
83
if not __SILENT_START__:
84
print 'You are using NumPy (%s) with SciPy (%s)' % (numpy.__version__, scipy.__version__)
0 commit comments