Skip to content

Commit a2cc735

Browse files
committed
Merge pull request #118 from plotly/etienne-factories
Make graph_objs.py compatible with new graph reference!
2 parents de0a8fe + 2380c4d commit a2cc735

24 files changed

+4664
-8254
lines changed

Diff for: makefile

+6-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,12 @@ sync_chunked : submodules/chunked_requests
4343
sync_refs : submodules/graph_reference
4444
@echo ""
4545
@echo "Syncing graph_reference directories"
46-
rsync -r submodules/graph_reference plotly/
46+
rm -rf plotly/graph_reference
47+
mkdir plotly/graph_reference
48+
cp submodules/graph_reference/graph_objs/python/graph_objs_meta.json plotly/graph_reference
49+
cp submodules/graph_reference/graph_objs/python/KEY_TO_NAME.json plotly/graph_reference
50+
cp submodules/graph_reference/graph_objs/python/NAME_TO_KEY.json plotly/graph_reference
51+
cp submodules/graph_reference/graph_objs/python/OBJ_MAP.json plotly/graph_reference
4752

4853
pull_refs : submodules/graph_reference
4954
@echo ""

Diff for: plotly/graph_objs/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,5 @@
1414
Histogram2d, Histogram2dContour, Scatter, Annotation, AngularAxis,
1515
ColorBar, Contours, ErrorX, ErrorY, Figure, Font, Layout, Legend,
1616
Line, Margin, Marker, RadialAxis, Stream, Trace, XAxis, XBins, YAxis,
17-
YBins
17+
YBins, Scatter3d, Surface, Scene, ZAxis, ErrorZ
1818
)

0 commit comments

Comments
 (0)