File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -270,7 +270,8 @@ RUN apt-get install -y libfreetype6-dev && \
270270RUN pip install opencv-contrib-python opencv-python && \
271271 /tmp/clean-layer.sh
272272
273- RUN pip install scipy \
273+ # Pin scipy until we update JAX b/335003097
274+ RUN pip install scipy==1.12.0 \
274275 # Scikit-learn accelerated library for x86
275276 scikit-learn-intelex>=2023.0.1 \
276277 # HDF5 support
Original file line number Diff line number Diff line change 11import unittest
22
33import geoviews .feature as gf
4-
4+ import holoviews as hv
55from cartopy import crs
66
77class TestGeoviews (unittest .TestCase ):
88 def test_viz (self ):
9+ hv .extension ('matplotlib' )
910 (gf .ocean + gf .land + gf .ocean * gf .land * gf .coastline * gf .borders ).options (
1011 'Feature' , projection = crs .Geostationary (), global_extent = True
1112 ).cols (3 )
You can’t perform that action at this time.
0 commit comments