diff --git a/Dockerfile.tmpl b/Dockerfile.tmpl index 90381a07..b4e1759e 100644 --- a/Dockerfile.tmpl +++ b/Dockerfile.tmpl @@ -270,7 +270,8 @@ RUN apt-get install -y libfreetype6-dev && \ RUN pip install opencv-contrib-python opencv-python && \ /tmp/clean-layer.sh -RUN pip install scipy \ +# Pin scipy until we update JAX b/335003097 +RUN pip install scipy==1.12.0 \ # Scikit-learn accelerated library for x86 scikit-learn-intelex>=2023.0.1 \ # HDF5 support diff --git a/tests/test_geoviews.py b/tests/test_geoviews.py index 7b270a76..869fc0f1 100644 --- a/tests/test_geoviews.py +++ b/tests/test_geoviews.py @@ -1,11 +1,12 @@ import unittest import geoviews.feature as gf - +import holoviews as hv from cartopy import crs class TestGeoviews(unittest.TestCase): def test_viz(self): + hv.extension('matplotlib') (gf.ocean + gf.land + gf.ocean * gf.land * gf.coastline * gf.borders).options( 'Feature', projection=crs.Geostationary(), global_extent=True ).cols(3)