Skip to content
This repository was archived by the owner on Jun 3, 2024. It is now read-only.

Commit 81de0f5

Browse files
plotly 3.8.0 compatibility
1 parent 014c650 commit 81de0f5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

plotly_express/_core.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -696,7 +696,7 @@ def make_figure(args, constructor, trace_patch={}, layout_patch={}):
696696
go.Scattergl if constructor == go.Scatter else go.Scatterpolargl
697697
)
698698
trace = trace_spec.constructor(name=trace_name)
699-
if trace_spec.constructor != go.Parcats:
699+
if trace_spec.constructor not in [go.Parcats, go.Parcoords, go.Choropleth]:
700700
trace.update(
701701
legendgroup=trace_name,
702702
showlegend=(trace_name != "" and trace_name not in trace_names),

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
setup(
1616
name="plotly_express",
17-
version="0.1.3",
17+
version="0.1.4",
1818
description="Plotly Express - a high level wrapper for Plotly.py",
1919
long_description=long_description,
2020
long_description_content_type="text/markdown",

0 commit comments

Comments
 (0)