Commit d11835ff authored by jlaura's avatar jlaura
Browse files

Remove SciPy

It looks like RTD does not support the installed scipy is the docs are built in a virtualenv....trying to alter that setup.
parent 3dccfd04
Loading
Loading
Loading
Loading
+1 −4
Original line number Diff line number Diff line
@@ -22,10 +22,7 @@ class Mock(MagicMock):
    def __getattr__(cls, name):
            return Mock()

MOCK_MODULES = ['proj4', 'gdal', 'osr','ogr', 'cv2', 'scikit-image', 'skimage', 'skimage.feature', 'sklearn',
                'scipy', 'scipy.spatial', 'scipy.spatial.distance', 'scipy.ndimage', 'scipy.ndimage.interpolation',
                'scipy.constants', 'scipy.stats','scipy.cluster.vq', 'scipy.sparse', 'scipy.stats.mstats', 'scipy.special',
                'scipy.optimize', 'scipy.stats.stats', 'osgeo']
MOCK_MODULES = ['proj4', 'gdal', 'osr','ogr', 'cv2', 'scikit-image', 'skimage', 'skimage.feature', 'sklearn', 'osgeo']
sys.modules.update((mod_name, Mock()) for mod_name in MOCK_MODULES)