File tree Expand file tree Collapse file tree 5 files changed +15
-3
lines changed
packages/python/plotly/plotly Expand file tree Collapse file tree 5 files changed +15
-3
lines changed Original file line number Diff line number Diff line change 3
3
4
4
# You can set these variables from the command line.
5
5
SPHINXOPTS =
6
- SPHINXBUILD = python3 -m sphinx
6
+ SPHINXBUILD = python -m sphinx
7
7
SOURCEDIR = .
8
8
BUILDDIR = _build
9
9
22
22
sed -i ' s/:class:`plotly.graph_objects/:class:`plotly.graph_objs/g' ../../packages/python/plotly/plotly/graph_objs/* /* .py
23
23
sed -i ' s/:class:`plotly.graph_objects/:class:`plotly.graph_objs/g' ../../packages/python/plotly/plotly/graph_objs/* /* /* .py
24
24
sed -i ' s/:class:`plotly.graph_objects/:class:`plotly.graph_objs/g' ../../packages/python/plotly/plotly/graph_objs/* /* /* /* .py
25
- sphinx-apidoc -o generated ../../packages/python/plotly/plotly ../../packages/python/plotly/plotly/validators ../../packages/python/plotly/plotly/tests ../../packages/python/plotly/plotly/matplotlylib/ ../../packages/python/plotly/plotly/offline ../../packages/python/plotly/plotly/api
25
+ sphinx-apidoc -E -M - o generated ../../packages/python/plotly/plotly ../../packages/python/plotly/plotly/validators ../../packages/python/plotly/plotly/tests ../../packages/python/plotly/plotly/matplotlylib/ ../../packages/python/plotly/plotly/offline ../../packages/python/plotly/plotly/api
26
26
@$(SPHINXBUILD ) -M $@ " $( SOURCEDIR) " " $( BUILDDIR) " $(SPHINXOPTS ) $(O )
27
27
git checkout -- ../../packages/python/plotly/plotly/graph_objs
28
28
rename ' s/graph_objs/graph_objects/' _build/html/* .html _build/html/generated/* .html
Original file line number Diff line number Diff line change @@ -56,6 +56,6 @@ plotly's high-level API for rapid figure generation. ::
56
56
.. toctree ::
57
57
:maxdepth: 1
58
58
59
- generated/plotly.data.rst
59
+ generated/plotly.express. data.rst
60
60
generated/plotly.express.colors.rst
61
61
Original file line number Diff line number Diff line change 1
1
from __future__ import absolute_import
2
2
from _plotly_utils .colors import * # noqa: F401
3
+
4
+ __all__ = [
5
+ "named_colorscales" ,
6
+ "cyclical" ,
7
+ "diverging" ,
8
+ "sequential" ,
9
+ "qualitative" ,
10
+ ]
11
+
Original file line number Diff line number Diff line change 7
7
from __future__ import absolute_import
8
8
from plotly .colors import *
9
9
10
+
11
+
10
12
__all__ = [
13
+ "named_colorscales" ,
11
14
"cyclical" ,
12
15
"diverging" ,
13
16
"sequential" ,
File renamed without changes.
You can’t perform that action at this time.
0 commit comments