Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Apigen recursive #2243

Merged
merged 14 commits into from
Mar 11, 2020
  •  
  •  
  •  
3 changes: 2 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ jobs:
cd ../../../doc
fi
echo 'export PATH="/home/circleci/project/doc/node_modules/.bin:$PATH"' >> $BASH_ENV
sudo apt-get install -y poppler-utils libxtst6 xvfb libgtk2.0-0 libgconf-2-4 libnss3 libasound2
sudo apt-get install -y poppler-utils libxtst6 xvfb libgtk2.0-0 libgconf-2-4 libnss3 libasound2 rename
cd ..

- save_cache:
Expand Down Expand Up @@ -471,6 +471,7 @@ jobs:
git config user.name plotlydocbot
git config user.email [email protected]
git add *
git add *
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

redundant?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

hum let me fix this

git add .nojekyll
git commit -m "build of https://github.com/plotly/plotly.py/commit/${CIRCLE_SHA1}"
git push --force [email protected]:plotly/plotly.py-docs.git master:gh-pages
Expand Down
2 changes: 2 additions & 0 deletions doc/apidoc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,5 @@ help:
%: Makefile
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
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
rename 's/graph_objs/graph_objects/' _build/html/*.html _build/html/generated/*.html
sed -i 's/graph_objs/graph_objects/g' _build/html/*.html _build/html/generated/*.html
8 changes: 6 additions & 2 deletions doc/apidoc/plotly.graph_objects.rst
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ Layout

.. autosummary::
:toctree: generated/
:template: trace.rst

Layout
layout



Expand All @@ -36,9 +36,9 @@ Simple charts

.. autosummary::
:toctree: generated/
:template: trace.rst

Scatter
scatter
Scattergl
Bar
Pie
Expand All @@ -52,6 +52,7 @@ Distributions

.. autosummary::
:toctree: generated/
:template: trace.rst

Box
Violin
Expand All @@ -64,6 +65,7 @@ Finance

.. autosummary::
:toctree: generated/
:template: trace.rst

Ohlc
Candlestick
Expand All @@ -77,6 +79,7 @@ Finance

.. autosummary::
:toctree: generated/
:template: trace.rst

Scatter3d
Surface
Expand Down Expand Up @@ -104,6 +107,7 @@ Specialized

.. autosummary::
:toctree: generated/
:template: trace.rst

Scatterpolar
Scatterpolargl
Expand Down
Loading