Skip to content

Commit 5031833

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

7 files changed

Lines changed: 3 additions & 992 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"

docs/source/explanations/axisarray.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,8 +133,6 @@ If you have concerns over this reduced safety, if you set the environment variab
133133
********************************
134134

135135
#. :doc:`../reference/API/axisarray`
136-
#. :doc:`sigproc`
137-
#. :doc:`../tutorials/signalprocessing`
138136

139137
.. :doc:`../how-tos/axisarray/content-axisarray`
140138

docs/source/explanations/content-explanations.rst

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ This section of the documentation aims to provide a comprehensive overview of th
1010

1111
ezmsg-design
1212
axisarray
13-
sigproc
1413

1514
Other ways to learn about `ezmsg` include following our :doc:`Tutorial <../tutorials/content-tutorials>`, checking the list of :doc:`HOW TO pages <../how-tos/content-howtos>` and the :doc:`reference documentation <../reference/content-reference>`.
1615

@@ -97,7 +96,6 @@ See :doc:`Extensions page <../extensions/content-extensions>` for more informati
9796
********************************
9897

9998
#. :doc:`axisarray`
100-
#. :doc:`sigproc`
10199
#. :doc:`../tutorials/start`
102100
#. :doc:`../how-tos/basics/content-basics`
103101
#. :doc:`../how-tos/pipeline/content-pipeline`

docs/source/explanations/ezmsg-design.rst

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,6 @@ Our preferred Message format is `AxisArray`. See :doc:`axisarray` for more infor
250250
********************************
251251

252252
#. :doc:`axisarray`
253-
#. :doc:`sigproc`
254253
#. :doc:`../tutorials/start`
255254
#. :doc:`../how-tos/basics/content-basics`
256255
#. :doc:`../how-tos/pipeline/content-pipeline`

docs/source/explanations/sigproc.rst

Lines changed: 0 additions & 365 deletions
This file was deleted.

docs/source/index.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ ezmsg implements much of the LabGraph API (with a few notable differences), and
2121

2222
The ezmsg library eases the creation of modular systems whose elements can be switched out easily. Consider the use case of building a processing pipeline where you will be experimenting with adding and removing steps until you find an optimal workflow. ezmsg allows you to easily separate each step into a discrete entity and piece together a workflow from those entities. Check out the helpful :doc:`tutorial series <tutorials/content-tutorials>` to see how this works.
2323

24-
.. `Examples <https://github.com/iscoe/ezmsg/tree/master/examples>`_ to see how this works.
24+
.. `Examples <https://github.com/ezmsg-org/ezmsg/tree/main/examples>`_ to see how this works.
2525
2626
2727
|ezmsg_logo_small| Quick start

docs/source/tutorials/signalprocessing.rst

Lines changed: 0 additions & 615 deletions
This file was deleted.

0 commit comments

Comments
 (0)