Skip to content
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
13 changes: 13 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
version: 2
updates:
- package-ecosystem: "pip" # See documentation for possible values
directory: "/requirements" # Location of package manifests
insecure-external-code-execution: allow
schedule:
interval: "daily"
labels:
- "Maintenance"
- "Dependencies"
ignore:
- dependency-name: "vtk"
- dependency-name: "grpcio"
10 changes: 8 additions & 2 deletions doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
import subprocess

import ansys.fluent.core as pyfluent
from ansys_sphinx_theme import ansys_favicon, pyansys_logo_black
import numpy as np
from pyansys_sphinx_theme import pyansys_logo_black
import pyvista
from sphinx_gallery.sorting import FileNameSortKey

Expand Down Expand Up @@ -87,6 +87,12 @@
# type, unless multiple values are being returned"
}

# Favicon
html_favicon = ansys_favicon

# static path
# html_static_path = ["_static"]

# Add any paths that contain templates here, relative to this directory.
templates_path = ["_templates"]

Expand Down Expand Up @@ -165,7 +171,7 @@ def _stop_fluent_container(gallery_conf, fname):

# -- Options for HTML output -------------------------------------------------
html_short_title = html_title = "pyfluent-visualization"
html_theme = "pyansys_sphinx_theme"
html_theme = "ansys_sphinx_theme"
html_logo = pyansys_logo_black
html_theme_options = {
"github_url": "https://github.com/pyansys/pyfluent-visualization",
Expand Down
2 changes: 1 addition & 1 deletion requirements/requirements_doc.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Sphinx==4.4.0
jupyter_sphinx==0.3.2
numpydoc==1.2
pyansys_sphinx_theme==0.2.3
ansys-sphinx-theme==0.4.0
pypandoc==1.7.2
pytest-sphinx==0.3.1
sphinx-autobuild==2021.3.14
Expand Down