File tree Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Expand file tree Collapse file tree 2 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -178,11 +178,12 @@ RUN export PATH=/usr/local/cuda/bin:$PATH && \
178
178
/tmp/clean-layer.sh
179
179
{{ end }}
180
180
181
- # Make sure to install at least the version 0.13.0 of seaborn
182
- # which has a fix for heatmap (b/308525631)
181
+ # (b/308525631) Pin Matplotlib until seaborn can be upgraded
182
+ # to >0.13.0 (now it's stuck by a package conflict with ydata-profiling 4.5.1).
183
183
RUN JAXVER=$(pip freeze | grep -e "^jax==") && \
184
- pip install \
185
- seaborn>=0.13.0 \
184
+ pip install --upgrade \
185
+ "matplotlib<3.8.0" \
186
+ seaborn \
186
187
python-dateutil dask igraph \
187
188
pyyaml joblib husl geopy mne pyshp \
188
189
pandas \
Original file line number Diff line number Diff line change 7
7
class TestSeaborn (unittest .TestCase ):
8
8
# Fails if seaborn gets downgraded by other package installations.
9
9
def test_version (self ):
10
- self .assertGreaterEqual (StrictVersion (sns .__version__ ), StrictVersion ("0.9 .0" ))
10
+ self .assertGreaterEqual (StrictVersion (sns .__version__ ), StrictVersion ("0.12 .0" ))
11
11
12
12
13
13
def test_option (self ):
You can’t perform that action at this time.
0 commit comments