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 libraries #176

Merged
merged 2 commits into from
Nov 11, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@

# Intersphinx mapping
intersphinx_mapping = {
"python": ("https://docs.python.org/3.11", None),
"python": ("https://docs.python.org/3", None),
# kept here as an example
# "scipy": ("https://docs.scipy.org/doc/scipy/reference", None),
# "numpy": ("https://numpy.org/devdocs", None),
Expand Down
2 changes: 1 addition & 1 deletion doc/source/examples_source/00-basic/02-plottype.py
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
# but this time we will set the plot attribute to line to visualize the values
# as two line plots, and we will use the xaxis attribute to set which row should
# be used as the X axis. We can also control the formatting and the title of the
# axis separately with the *axis_format and *title attributes, as done below.
# axis separately with the *axis_format* and *title attributes*, as done below.
# The result can be seen in the following image.

line_plot = adr_service.create_item(obj_name="Line Plot", source="Documentation")
Expand Down
4 changes: 2 additions & 2 deletions doc/source/lowlevelapi/TemplateObjects.rst
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ Template Objects
.. _Tree Merge: https://s3.amazonaws.com/www3.ensight.com/nexus_docs/nexus_sphinx/is/TreeMerge.html
.. _Userdefined: https://s3.amazonaws.com/www3.ensight.com/nexus_docs/nexus_sphinx/is/Userdefined.html
.. _Generator templates: https://s3.amazonaws.com/www3.ensight.com/nexus_docs/nexus_sphinx/is/GeneratorTemplates.html

.. _Statistical Analysis: https://ansysproducthelpqa.win.ansys.com/public/account/secured?returnurl=Views/Secured/corp/v251/en/adr_ug/ad_ug_generator_statistical_analysis.html


report_objects.TemplateREST object
Expand Down Expand Up @@ -1698,7 +1698,7 @@ no tree header be generated.
.. _statisticalREST:

statisticalREST object
^^^^^^^^^^^^^^^^^^^^
^^^^^^^^^^^^^^^^^^^^^^

Inherits from TemplateREST, GeneratorREST

Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -80,11 +80,11 @@ test = [
"ansys-dpf-core==0.13.0",
]
doc = [
"ansys-sphinx-theme==0.12.4",
"ansys-sphinx-theme==1.1.1",
"numpydoc==1.8.0",
"pillow==10.4.0",
"docker>=7.1.0",
"Sphinx==7.2.6",
"Sphinx==8.0.2",
"sphinx-copybutton==0.5.2",
"sphinx-gallery==0.18.0",
]
Expand All @@ -95,15 +95,15 @@ dev = [
"ipdb",
"ipython",
"whatsonpypi",
"ansys-sphinx-theme==0.12.4",
"ansys-sphinx-theme==1.1.1",
"numpy==1.25.1",
"numpydoc==1.8.0",
"pillow==10.4.0",
"psutil==6.0.0",
"docker>=7.1.0",
"pytest==8.3.3",
"pytest-cov==4.1.0",
"Sphinx==7.2.6",
"Sphinx==8.0.2",
"sphinx-copybutton==0.5.2",
"sphinx-gallery==0.18.0",
"pre-commit==3.3.3",
Expand Down
Loading