Skip to content

Commit bc7cf72

Browse files
committed
Further remove sigproc from docs
1 parent 072ba87 commit bc7cf72

1 file changed

Lines changed: 2 additions & 6 deletions

File tree

docs/source/conf.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@
5151
"python": ("https://docs.python.org/3/", None),
5252
"sphinx": ("https://www.sphinx-doc.org/en/master/", None),
5353
"numpy": ("https://numpy.org/doc/stable/", None),
54-
"scipy": ("https://docs.scipy.org/doc/scipy/", None),
5554
}
5655
intersphinx_disabled_domains = ["std"]
5756

@@ -78,8 +77,7 @@
7877
add_module_names = False
7978

8079
branch = "main"
81-
code_url = f"https://github.com/iscoe/ezmsg/blob/{branch}/"
82-
sigproc_code_url = f"https://github.com/ezmsg-org/ezmsg-sigproc/blob/{branch}/"
80+
code_url = f"https://github.com/ezmsg-org/ezmsg/blob/{branch}/"
8381

8482

8583
def linkcode_resolve(domain, info):
@@ -88,9 +86,7 @@ def linkcode_resolve(domain, info):
8886
if not info["module"]:
8987
return None
9088
filename = info["module"].replace(".", "/")
91-
if "sigproc" in filename:
92-
return f"{sigproc_code_url}src/{filename}.py"
93-
elif "core" in filename:
89+
if "core" in filename:
9490
return f"{code_url}src/ezmsg/core/__init__.py"
9591
else:
9692
return f"{code_url}src/{filename}.py"

0 commit comments

Comments
 (0)