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

Update documentation backend and reduce warnings in doc creation (#1199) #1205

Merged
merged 35 commits into from Aug 15, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
35 commits
Select commit Hold shift + click to select a range
833e394
Update documentation backend and reduce warnings in doc creation (#1199)
RNKuhns Jul 25, 2021
f7c30e7
Add myst (#1206)
mloning Jul 26, 2021
e576a51
Fix docstrings in sktime/datasets/
mloning Jul 26, 2021
93b06e0
Merge additional pydocstyle error fixes into development docs (#1208)
RNKuhns Jul 28, 2021
59047b1
Merge branch 'main' into docs-dev
mloning Jul 28, 2021
75a2567
Docstring fixes
mloning Jul 28, 2021
a4a9cae
Add gallery for tutorials (#1158)
mloning Jul 30, 2021
5c97803
Fixing more sphinx warnings (#1231)
mloning Aug 1, 2021
10bcd69
Remove full module reference for API elements
mloning Aug 1, 2021
f02dc00
add glossary
mloning Aug 1, 2021
8e40ac0
Merge branch 'docs-dev' of https://github.com/alan-turing-institute/s…
mloning Aug 1, 2021
c1e238c
Update .gitignore
mloning Aug 1, 2021
3bbdeac
Update structure, minor changes to content
mloning Aug 1, 2021
d37f3c1
Fix home-button logo
mloning Aug 1, 2021
a64ed00
Remove edit button, fix notebook gallery, show toc on api reference page
mloning Aug 3, 2021
09acc8e
Add key terms to glossary, descriptions still missings
mloning Aug 3, 2021
d8d9f7f
Add reviewer guide, add panels for Get Involved page, minor changes
mloning Aug 3, 2021
6f2afe6
Fix duplicate object description warnings
mloning Aug 3, 2021
10f3a2e
Sync with main
mloning Aug 3, 2021
40c931f
Fix docstring
mloning Aug 3, 2021
9b5aeec
Remove auto-section-labeling, minor fixes, remove unused files
mloning Aug 4, 2021
9820b84
Add sphinx.ext.sphinx_issues for links to GitHub
mloning Aug 4, 2021
04cb3a2
Minor fixes
mloning Aug 4, 2021
b0d0ee7
Minor fixes
mloning Aug 4, 2021
7b4ba03
Embed google calendar, restructure get involved files
mloning Aug 13, 2021
059db14
Update reviewer guide
mloning Aug 13, 2021
14e5812
Additions to docs-dev (PR #1205) (#1274)
RNKuhns Aug 13, 2021
3a1b6c4
Sync with main
mloning Aug 13, 2021
291643d
Fix merge conflicts between docs-dev and main (#1293)
RNKuhns Aug 13, 2021
a0b75d2
Fix cross ref in panels
mloning Aug 13, 2021
bdd26df
Merge branch 'main' into docs-dev
mloning Aug 13, 2021
5a8cecb
Fix code quality
mloning Aug 14, 2021
5e08d50
Merge branch 'main' into docs-dev
mloning Aug 14, 2021
53a3022
Fix code quality
mloning Aug 14, 2021
cafb5e5
Fix remaining issues in docs-dev branch (#1294)
RNKuhns Aug 14, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 2 additions & 5 deletions .gitignore
Expand Up @@ -73,11 +73,8 @@ instance/

# Sphinx documentation
docs/_build/
# automatically generated content
docs/source/modules/auto_generated/
docs/source/api_reference/modules/auto_generated/

# automatically sym-linked example notebooks
docs/source/api_reference/auto_generated/
docs/estimator_overview_table.md
docs/source/examples

# PyBuilder
Expand Down
1 change: 1 addition & 0 deletions .readthedocs.yml
Expand Up @@ -18,3 +18,4 @@ python:

sphinx:
configuration: docs/source/conf.py
# fail_on_warning: True
3 changes: 1 addition & 2 deletions CHANGELOG.rst
Expand Up @@ -310,8 +310,7 @@ Changed

Fixed
~~~~~
* Fix links in Readthedocs and Binder launch button (#416)
@mloning
* Fix links in Readthedocs and Binder launch button (#416) @mloning
* Fixed small bug in performance metrics (#422) @krumeto
* Resolved warnings in notebook examples (#418) @alwinw
* Resolves #325 ModuleNotFoundError for soft dependencies (#410) @alwinw
Expand Down
2 changes: 1 addition & 1 deletion docs/Makefile
Expand Up @@ -3,7 +3,7 @@
# You can set these variables from the command line.
PREPROCESS = sphinx-apidoc
APIDOCTEMPLATEDIR = source/_templates/apidoc
AUTOGENDIR = source/modules/auto_generated
AUTOGENDIR = source/api_reference/auto_generated
SPHINXOPTS =
SPHINXBUILD = sphinx-build
SOURCEDIR = source
Expand Down
112 changes: 0 additions & 112 deletions docs/estimator_overview_table.md

This file was deleted.

11 changes: 7 additions & 4 deletions docs/requirements.txt
@@ -1,7 +1,10 @@
jupyter
m2r2
nbsphinx
myst-parser
nbsphinx==0.8.6
numpydoc
sphinx==3.2.*
sphinx_rtd_theme
pydata-sphinx-theme
sphinx==4.1.1
sphinx-gallery==0.6.0
sphinx-panels==0.6.0
sphinx_issues==1.2.0
tabulate
File renamed without changes.
9 changes: 0 additions & 9 deletions docs/source/_templates/apidoc/module.rst_t

This file was deleted.

52 changes: 0 additions & 52 deletions docs/source/_templates/apidoc/package.rst_t

This file was deleted.

8 changes: 0 additions & 8 deletions docs/source/_templates/apidoc/toc.rst_t

This file was deleted.

2 changes: 1 addition & 1 deletion docs/source/_templates/class.rst
@@ -1,4 +1,4 @@
:mod:`{{module}}`.{{objname}}
{{objname}}
{{ underline }}==============

.. currentmodule:: {{ module }}
Expand Down
8 changes: 2 additions & 6 deletions docs/source/_templates/class_with_call.rst
@@ -1,14 +1,10 @@
:mod:`{{module}}`.{{objname}}
{{objname}}
{{ underline }}===============

.. currentmodule:: {{ module }}

.. autoclass:: {{ objname }}

{% block methods %}
.. automethod:: __init__
.. automethod:: __call__
{% endblock %}
:special-members: __call__

.. include:: {{module}}.{{objname}}.examples

Expand Down
6 changes: 0 additions & 6 deletions docs/source/_templates/class_without_init.rst

This file was deleted.

2 changes: 1 addition & 1 deletion docs/source/_templates/function.rst
@@ -1,4 +1,4 @@
:mod:`{{module}}`.{{objname}}
{{objname}}
{{ underline }}====================

.. currentmodule:: {{ module }}
Expand Down
42 changes: 0 additions & 42 deletions docs/source/_templates/module.rst

This file was deleted.