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 && \
270
270
RUN pip install opencv-contrib-python opencv-python && \
271
271
/tmp/clean-layer.sh
272
272
273
- RUN pip install scipy \
273
+ # Pin scipy until we update JAX b/335003097
274
+ RUN pip install scipy==1.12.0 \
274
275
# Scikit-learn accelerated library for x86
275
276
scikit-learn-intelex>=2023.0.1 \
276
277
# HDF5 support
Original file line number Diff line number Diff line change 1
1
import unittest
2
2
3
3
import geoviews .feature as gf
4
-
4
+ import holoviews as hv
5
5
from cartopy import crs
6
6
7
7
class TestGeoviews (unittest .TestCase ):
8
8
def test_viz (self ):
9
+ hv .extension ('matplotlib' )
9
10
(gf .ocean + gf .land + gf .ocean * gf .land * gf .coastline * gf .borders ).options (
10
11
'Feature' , projection = crs .Geostationary (), global_extent = True
11
12
).cols (3 )
You can’t perform that action at this time.
0 commit comments