Skip to content

Commit eb27af8

Browse files
authored
Merge pull request #202 from lucasimi/develop
Updated plotly version
2 parents 5721a5e + f5dfb52 commit eb27af8

File tree

4 files changed

+5
-4
lines changed

4 files changed

+5
-4
lines changed

app/requirements.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ numpy>=1.25.2
33
scikit-learn>=1.5.0
44
umap-learn>=0.5.7
55
pandas>=2.1.0
6-
tda-mapper==0.9.0
6+
tda-mapper==0.9.0
7+
plotly < 6.0.0

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dependencies = [
2222
"igraph>=0.11.8",
2323
"numba>=0.54",
2424
"numpy>=1.20.1, <2.0.0",
25-
"plotly>=4.14.3",
25+
"plotly>=6.0.0, <7.0.0",
2626
"pyvis>=0.3.2",
2727
"joblib>=1.4.2",
2828
]

src/tdamapper/_plot_plotly.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -300,7 +300,7 @@ def _colorbar(mapper_plot, title):
300300
thickness=0.025,
301301
thicknessmode='fraction',
302302
xanchor='left',
303-
titleside='right',
303+
title_side='right',
304304
ypad=0,
305305
xpad=0,
306306
tickwidth=1,

src/tdamapper/_plot_pyvis.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def _colorbar(height, cmap, cmin, cmax, title):
4747
thickness=20,
4848
thicknessmode='fraction',
4949
xanchor='left',
50-
titleside='right',
50+
title_side='right',
5151
tickwidth=1,
5252
tickformat='.2g',
5353
nticks=_TICKS_NUM,

0 commit comments

Comments
 (0)