-
-
Notifications
You must be signed in to change notification settings - Fork 5.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add libgfortran for OS X #1022
Add libgfortran for OS X #1022
Conversation
Hi! This is the friendly automated conda-forge-linting service. I just wanted to let you know that I linted all conda-recipes in your PR ( |
So, the first question might be are the other libraries (e.g. First I tried removing In [1]: import numpy
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-1-5a0bd626bb1d> in <module>()
----> 1 import numpy
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/__init__.py in <module>()
178 return loader(*packages, **options)
179
--> 180 from . import add_newdocs
181 __all__ = ['add_newdocs',
182 'ModuleDeprecationWarning',
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/add_newdocs.py in <module>()
11 from __future__ import division, absolute_import, print_function
12
---> 13 from numpy.lib import add_newdoc
14
15 ###############################################################################
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/__init__.py in <module>()
6 from numpy.version import version as __version__
7
----> 8 from .type_check import *
9 from .index_tricks import *
10 from .function_base import *
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/type_check.py in <module>()
9 'common_type']
10
---> 11 import numpy.core.numeric as _nx
12 from numpy.core.numeric import asarray, asanyarray, array, isnan, \
13 obj2sctype, zeros
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/core/__init__.py in <module>()
12 os.environ[envkey] = '1'
13 env_added.append(envkey)
---> 14 from . import multiarray
15 for envkey in env_added:
16 del os.environ[envkey]
ImportError: dlopen(/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/core/multiarray.so, 2): Library not loaded: @rpath/./libquadmath.0.dylib
Referenced from: /zopt/conda2/envs/numpyenv/lib/libopenblas-r0.2.18.dylib
Reason: image not found Then I tried to remove In [1]: import numpy
---------------------------------------------------------------------------
ImportError Traceback (most recent call last)
<ipython-input-1-5a0bd626bb1d> in <module>()
----> 1 import numpy
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/__init__.py in <module>()
178 return loader(*packages, **options)
179
--> 180 from . import add_newdocs
181 __all__ = ['add_newdocs',
182 'ModuleDeprecationWarning',
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/add_newdocs.py in <module>()
11 from __future__ import division, absolute_import, print_function
12
---> 13 from numpy.lib import add_newdoc
14
15 ###############################################################################
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/__init__.py in <module>()
6 from numpy.version import version as __version__
7
----> 8 from .type_check import *
9 from .index_tricks import *
10 from .function_base import *
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/type_check.py in <module>()
9 'common_type']
10
---> 11 import numpy.core.numeric as _nx
12 from numpy.core.numeric import asarray, asanyarray, array, isnan, \
13 obj2sctype, zeros
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/core/__init__.py in <module>()
12 os.environ[envkey] = '1'
13 env_added.append(envkey)
---> 14 from . import multiarray
15 for envkey in env_added:
16 del os.environ[envkey]
ImportError: dlopen(/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/core/multiarray.so, 2): Symbol not found: ___addtf3
Referenced from: /zopt/conda2/envs/numpyenv/lib//./libquadmath.0.dylib
Expected in: /usr/lib/libSystem.B.dylib
in /zopt/conda2/envs/numpyenv/lib//./libquadmath.0.dylib |
Then I tried to remove In [1]: import numpy
In [2]: numpy.test()
Running unit tests for numpy
NumPy version 1.11.1
NumPy relaxed strides checking option: False
NumPy is installed in /zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy
Python version 2.7.12 |Continuum Analytics, Inc.| (default, Jul 2 2016, 17:43:17) [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)]
nose version 1.3.7
...............................S.............................................................................................................................................S.....................................................................................................................................................................................................................KKK............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................S................................................................................................................................................................................................................................................................................................K.........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................K...SK.S.......S....................................................................................clang: warning: -Wl,-rpath=/var/folders/jj/pp1xwt1n4zdgy9zxbxc22t8w66tr7q/T/tmpDOvLml/libbar.so: 'linker' input unused
............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................S..................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................S............................................................................................................................S.....................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................
----------------------------------------------------------------------
Ran 6115 tests in 67.314s
OK (KNOWNFAIL=6, SKIP=9)
Out[2]: <nose.result.TextTestResult run=6115 errors=0 failures=0> |
Also, I have performed the same experiment with In [1]: import scipy
In [2]: scipy.test()
Running unit tests for scipy
NumPy version 1.11.1
NumPy relaxed strides checking option: False
NumPy is installed in /zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy
SciPy version 0.17.1
SciPy is installed in /zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy
Python version 2.7.12 |Continuum Analytics, Inc.| (default, Jul 2 2016, 17:43:17) [GCC 4.2.1 (Based on Apple Inc. build 5658) (LLVM build 2336.11.00)]
nose version 1.3.7
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `scipy.weave` is deprecated, use `weave` instead!
warnings.warn(depdoc, DeprecationWarning)
........S.S.......................................................................................................................................................................................................................................................K.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
......./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
................/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
.........................................................................................................................................................................................................................................................................K..............................................................................................................................................................K..K............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/io/arff/tests/test_arffread.py:254: DeprecationWarning: parsing timezone aware datetimes is deprecated; this will raise an error in the future
], dtype='datetime64[m]')
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/io/arff/tests/test_arffread.py:254: DeprecationWarning: parsing timezone aware datetimes is deprecated; this will raise an error in the future
], dtype='datetime64[m]')
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/io/arff/tests/test_arffread.py:254: DeprecationWarning: parsing timezone aware datetimes is deprecated; this will raise an error in the future
], dtype='datetime64[m]')
................................................................................................................................................................................................................................................................................................................................................................./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
......................../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
.......................................................................................................................................................................................................................................................................................................................0-th dimension must be fixed to 3 but got 15
..0-th dimension must be fixed to 3 but got 5
..............0-th dimension must be fixed to 4 but got 2
0-th dimension must be fixed to 4 but got 2
.0-th dimension must be fixed to 4 but got 2
0-th dimension must be fixed to 4 but got 2
.0-th dimension must be fixed to 4 but got 2
0-th dimension must be fixed to 4 but got 2
0-th dimension must be fixed to 4 but got 2
0-th dimension must be fixed to 4 but got 2
0-th dimension must be fixed to 4 but got 2
0-th dimension must be fixed to 4 but got 2
.............S..................K...........................................................................................................................................................................................................................................................................................................K...............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................S..................K.........................................K..........................................................................................................SSSSSSSSSSSS....................S....................................................................................................................................KK................................................................................................................................................................................................................................................................................................./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/ndimage/interpolation.py:435: UserWarning: The behaviour of affine_transform with a one-dimensional array supplied for the matrix parameter will change in scipy 0.18.0.
"The behaviour of affine_transform with a one-dimensional "
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/ndimage/interpolation.py:435: UserWarning: The behaviour of affine_transform with a one-dimensional array supplied for the matrix parameter will change in scipy 0.18.0.
"The behaviour of affine_transform with a one-dimensional "
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/ndimage/interpolation.py:435: UserWarning: The behaviour of affine_transform with a one-dimensional array supplied for the matrix parameter will change in scipy 0.18.0.
"The behaviour of affine_transform with a one-dimensional "
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/ndimage/interpolation.py:435: UserWarning: The behaviour of affine_transform with a one-dimensional array supplied for the matrix parameter will change in scipy 0.18.0.
"The behaviour of affine_transform with a one-dimensional "
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/ndimage/interpolation.py:435: UserWarning: The behaviour of affine_transform with a one-dimensional array supplied for the matrix parameter will change in scipy 0.18.0.
"The behaviour of affine_transform with a one-dimensional "
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/ndimage/interpolation.py:435: UserWarning: The behaviour of affine_transform with a one-dimensional array supplied for the matrix parameter will change in scipy 0.18.0.
"The behaviour of affine_transform with a one-dimensional "
...............................................................................................................................................................................................................................................................................................................................................................................................................................................................K..........................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................S...............................................................SS..........S.....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS..S.....S....K....S.......S...S........SSSSK...SSSS..S.........S........SS..........S....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS........S.........S.......S...S........SSSS...SSSS..S............S................................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...............................S.......S.........................S..........S..................................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
.................................S.......S.........................S..........S..........SS.......S....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS..S.....S.........S...SS..S...S........SSSS....SSSS..S.........S......K......................S.....K..../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...............S...............S...SS...S..........................S..........S..........................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...................................S...SS..S............................S.........S........SS..........S.....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS..S.....S....K....S.......S...S........SSSSK...SSSS..S.........S........SS..........S....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS........S.........S.......S...S........SSSS...SSSS..S............S................................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...............................S.......S.........................S..........S..................................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
.................................S.......S.........................S..........S..........SS.......S....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS..S.....S.........S...SS..S...S........SSSS....SSSS..S.........S......K......................S.....K..../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...............S...............S...SS...S..........................S..........S..........................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...................................S...SS..S............................S.........S........SS..........S.....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS..S.....S....K....S.......S...S........SSSSK...SSSS..S.........S........SS..........S....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS........S.........S.......S...S........SSSS...SSSS..S............S................................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...............................S.......S.........................S..........S..................................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
.................................S.......S.........................S..........S..........SS.......S....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS..S.....S.........S...SS..S...S........SSSS....SSSS..S.........S......K......................S.....K..../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...............S...............S...SS...S..........................S..........S..........................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...................................S...SS..S............................S.........S........SS..........S.....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS..S.....S....K....S.......S...S........SSSSK...SSSS..S.........S........SS..........S....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS........S.........S.......S...S........SSSS...SSSS..S............S................................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...............................S.......S.........................S..........S..................................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
.................................S.......S.........................S..........S..........SS.......S....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS..S.....S.........S...SS..S...S........SSSS....SSSS..S.........S......K......................S.....K..../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...............S...............S...SS...S..........................S..........S..........................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...................................S...SS..S............................S.........S........SS..........S....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS..S.....S....K....S.......S...S........SSSSK...SSSS..S.........S........SS..........S....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS........S.........S.......S...S........SSSS...SSSS..S............S................................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...............................S.......S.........................S..........S..................................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
.................................S.......S.........................S..........S..........SS.......S....S...SSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS.....SSS..S.....S.........S...SS..S...S........SSSS....SSSS..S.........S......K......................S.....K..../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...............S...............S...SS...S..........................S..........S..........................S.........../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...................................S...SS..S............................S.........S..............SSSSSSSSSSSSSSSSSSSSSSSSSSSSS........................S.....S...................SSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS....................SSS..S.......................S....K..................................S..............................................S..................S..............SSSSK...SSSS.............................................................S.........S.........K............SSK.K......KS.....SK.KKSSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS....KSSS..K.K......S....KKK..S.K...K.....SK..S..............SSSSK...SSSS...K.........................................................SK.............SSSSSSSSSSSSSSSSSSSSSSSSSSSSS........................S....S..SSSSSSSSSSSSSSSS.SSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS....SSSSSSSSSSSSSSSSSSS....SSSSSSSSSSSSSSSS......S.....SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS..S..............................................SSSSSSSSSSSSSSSSS..S..............SSSS...SSSS................................................................S.........S.........K............SSK.K.......S....SK.SSSSSSSSSSSSSSSS.SSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS....SSSSSSSSSSSSSSSSSSS..K.SSSSSSSSSSSSSSSS......S.....SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS..S........................................K.....SSSSSSSSSSSSSSSSS..S..............SSSS....SSSS...K............................................................SK..................SSSSSSSSSSSSSSSSSSSSSSSSSSS............................................................................./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
.............................................................................................................S............................................................S..................................................................................................................................................................................................................................................................................................................................................................................................................S..........S..........K.................K.K............K...K.........................................../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
....K.......................................K...........................K....................................S.....................................................K......S......................K.........................................................................................................................................................................................................................................................................................................................K.K...............................................................S.K...................SSSSSSSSSSSSSSSSSSSSSSSSSSS............................................................................./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
...............................................................................................................S............................................................S..................................................................................................................................................................................................................................................................................................................................................................................................................S..........S..........K.................K.K............K...K.........................................../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
....K.......................................K.............................K....................................S.....................................................K......S................................................................................................................................................................................................................................................................................................................................................K.K...............................................................S.K..............SSSSSSSSSSSSSSSSSSSSSSSSSSSSS.....................S....S..SSSSSSSSSSSSSSSS.SSSS.SSSSS/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
SSSSS....SSSSSSSSSSSSSSSSSSS..S.SSSSSSSSSSSSSSSS......S.....SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS..S........................................SS....SSSSSSSSSSSSSSSSS..S..............SSSS....SSSS.............................................................S.........S....................K....SSSSSSSSSSSSSSSSSSSSSSSSSSS.SSSSSSSSSSSSSSSS..............SSSSSSSSSSSSSSSS....................K..../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
.........SSSSSSSSSSSSSSSS...................S.SSSSSSSSSSSSSSSS............SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSS..S........................................SS.....SSSSSSSSSSSSSSSSS..........................................................................................................................................................................................................................................................................................................................................................................................SSSSSSSSSSSSSSSSSSSS...............SSSSSSSSSSSSSSSSSSSSSSSSSSS.............................SSSSSSSSSSSSSSSS........................../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2425: DeprecationWarning: This function is deprecated. Please call randint(-5, 5 + 1) instead
I = np.random.random_integers(-M + 1, M - 1, size=NUM_SAMPLES)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/sparse/tests/test_base.py:2426: DeprecationWarning: This function is deprecated. Please call randint(-3, 3 + 1) instead
J = np.random.random_integers(-N + 1, N - 1, size=NUM_SAMPLES)
.........SSSSSSSSSSSSSSSS.....................SSSSSSSSSSSSSSSS.............SSSSSSSSSSSSSSSS...SSSSSSSSSSSSSSSS..S........................................SS....SSSSSSSSSSSSSSSSS...........................................................................................................................................................................................................................................................................................................................................................................................SSSSSSSSSSSSSSSSSSSS.....................................................................S...S.............SSS......................................................................................................................................................................................................................................................................................................................................................................../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/scipy/spatial/tests/test_kdtree.py:1089: DeprecationWarning: This function is deprecated. Please call randint(0, 6560 + 1) instead
mask = np.random.random_integers(0, z.size - 1, np.random.randint(50) + 5)
.........................................................................................................................................................../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
/zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
......................................................................................................................................................................................................................................................................................................................................../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
..............................................................................................................................................................................................................................K.K.............................K.....K..K...KK............................SSSSSSSS...../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
...........................................................................................................S...................................................S...............S..................................................................S...............S...............S...............S................S.................S...............S...............S...............S...............S...............S................................................S................S................S................S................S................S................S................................S................S................S................S.................S................S.....................................................S.................S.................S...................................S................S................S.....................................................S...............S.................S..................................S................S.................S...............S...............S...............S...............S.................S................................S.................................S.................S................................S...............S..................................S................SK...............SK...............S...................................S.................................S................................................................................................................................................................................................................................................................................................................K......................................................K................................................................................................S....../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
.../zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
./zopt/conda2/envs/numpyenv/lib/python2.7/site-packages/numpy/lib/utils.py:99: DeprecationWarning: `rand` is deprecated!
numpy.testing.rand is deprecated in numpy 1.11. Use numpy.random.rand instead.
warnings.warn(depdoc, DeprecationWarning)
................................................................................................................................................................................S............................................................S....S..................................................S..S.............................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................................K......................................................................................................
----------------------------------------------------------------------
Ran 20351 tests in 236.209s
OK (KNOWNFAIL=99, SKIP=1702)
Out[2]: <nose.result.TextTestResult run=20351 errors=0 failures=0> |
In short, my experiments suggests this tests out ok. Not only am I able to import |
If one inspects the linkages of all of these packages, we can see the following.
While I was able to shimmy things around to get this to work without a rebuild, we will need to bump the build number of |
I drew the same conclusions about the dependencies through I saw no reason to hold off on this, the TravisCI failure was due to another blocked recipe, not this one as far as I could tell. Thanks @jakirkham. |
This is pretty similar to the old version, which also passed. So, I have no reason to believe this wouldn't. I also tested |
Wanted to add one final point. We discussed how to get an ABI version for
FWIW I looked at the full output of
|
This is a significantly pared down version of PR ( #861 ), which in turn is a pared down version of PR ( #855 ). The sole purpose of this is to have a
libgfortran
package that comes from thegcc
compiler on Mac. Think of it as the KISS PR for addinglibgfortran
. We can certainly add to this in the future, but right now having this simplest working thing should vastly improve our current situation. So, please keep that in mind when responding.cc @msarahan @ocefpaf @pelson