Skip to content

Commit

Permalink
fix: solving intersphinx warnings on paths (#1469)
Browse files Browse the repository at this point in the history
Co-authored-by: pyansys-ci-bot <[email protected]>
  • Loading branch information
RobPasMue and pyansys-ci-bot authored Oct 10, 2024
1 parent f6cdee7 commit ef3af38
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
1 change: 1 addition & 0 deletions doc/changelog.d/1469.fixed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
solving intersphinx warnings on paths
12 changes: 6 additions & 6 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -192,14 +192,14 @@ def intersphinx_pyansys_geometry(switcher_version: str):
intersphinx_mapping = {
"python": ("https://docs.python.org/3.11", None),
"numpy": ("https://numpy.org/doc/stable", None),
"scipy": ("https://docs.scipy.org/doc/scipy/", None),
"pyvista": ("https://docs.pyvista.org/version/stable", None),
"grpc": ("https://grpc.github.io/grpc/python/", None),
"scipy": ("https://docs.scipy.org/doc/scipy", None),
"pyvista": ("https://docs.pyvista.org", None),
"grpc": ("https://grpc.github.io/grpc/python", None),
"pint": ("https://pint.readthedocs.io/en/stable", None),
"beartype": ("https://beartype.readthedocs.io/en/stable/", None),
"docker": ("https://docker-py.readthedocs.io/en/stable/", None),
"beartype": ("https://beartype.readthedocs.io/en/stable", None),
"docker": ("https://docker-py.readthedocs.io/en/stable", None),
"pypim": ("https://pypim.docs.pyansys.com/version/stable", None),
"semver": ("https://python-semver.readthedocs.io/en/latest/", None),
"semver": ("https://python-semver.readthedocs.io/en/latest", None),
}

# Conditional intersphinx mapping
Expand Down

0 comments on commit ef3af38

Please sign in to comment.