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

build: remove upper cap on sphinx #565

Merged
merged 3 commits into from Aug 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion CONTRIBUTING.rst
Expand Up @@ -157,6 +157,6 @@ We are using :code:`api-doc` to build the documentation of the lib so if you wan

You can then build the documentation, it will automatically call :code:`autodoc` and :code:`autosummary` during the process.

.. spelling::
.. spelling:word-list::

pre
2 changes: 1 addition & 1 deletion docs/source/tutorials/add-tile.rst
Expand Up @@ -144,6 +144,6 @@ in the :code:`app_items` list, add a :code:`DrawerItem` corresponding to your ti
start your voila dashboard "et voila!", you're tile will be loaded at the kernel start and display when you click on the corresponding drawer item.


.. spelling::
.. spelling:word-list::

et
2 changes: 1 addition & 1 deletion docs/source/tutorials/create_asset.rst
Expand Up @@ -165,6 +165,6 @@ and the corresponding display:
:alt: rgb display
:align: center

.. spelling::
.. spelling:word-list::

colormap
2 changes: 1 addition & 1 deletion docs/source/tutorials/send-to-sepal.rst
Expand Up @@ -159,6 +159,6 @@ Once your PR has been accepted you should change in the ui.ipynb the link to the
wiki_link = 'https://docs.sepal.io/module/<module_name>.html'
issue_link = 'https://github.com/<profile>/<repository>/issues/new'

.. spelling::
.. spelling:word-list::

env
2 changes: 1 addition & 1 deletion docs/source/tutorials/structure.rst
Expand Up @@ -154,6 +154,6 @@ Widget

At some point you'll may encounter limitation in the basics `vuetify <https://vuetifyjs.com/en/>`_ components. every custom widget that you'll build need to live in this package. More information in this :doc:`./custom-widget`.

.. spelling::
.. spelling:word-list::

utils
2 changes: 1 addition & 1 deletion docs/source/tutorials/translate-app.rst
Expand Up @@ -184,6 +184,6 @@ Open the :code:`component/message/test_translation.ipynb` notebook. change the :

Once your output message is "All messages are translated" it means that all the dictionaries have the same keys and the same shape. if someone open your application in another language the translated message will be used instead of the English one.

.. spelling::
.. spelling:word-list::

Español
2 changes: 1 addition & 1 deletion docs/source/widgets/load_table.rst
Expand Up @@ -47,7 +47,7 @@ the value can be retrieve from the :code:`v_model` trait.

More information can be found `here <../modules/sepal_ui.sepalwidgets.html#sepal_ui.sepalwidgets.inputs.LoadTableField>`__.

.. spelling::
.. spelling:word-list::

pathname
lng
1 change: 0 additions & 1 deletion sepal_ui/sepalwidgets/__init__.py
@@ -1,5 +1,4 @@
import ipyvuetify as v

from sepal_ui.sepalwidgets.sepalwidget import SepalWidget


Expand Down
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -84,9 +84,10 @@ def get_templates():
"nbmake ",
],
"doc": [
"sphinx>=4,<5", # Remove this when MyST-NB supports Sphinx 5
"docutils<0.19", # remove once m2r2 0.3.3 is released
"sphinx",
"jupyter-sphinx",
"pydata-sphinx-theme==0.9.0",
"pydata-sphinx-theme",
"sphinx-notfound-page",
"Sphinx",
"sphinxcontrib-spelling",
Expand Down