|
90 | 90 | # Problems in FastCS itself |
91 | 91 | ("py:class", "T"), |
92 | 92 | ("py:class", "AttrIOUpdateCallback"), |
93 | | - ("py:class", "fastcs.transport.epics.pva.pvi_tree._PviSignalInfo"), |
| 93 | + ("py:class", "fastcs.transports.epics.pva.pvi_tree._PviSignalInfo"), |
94 | 94 | ("py:class", "fastcs.logging._logging.LogLevel"), |
95 | 95 | ("py:class", "fastcs.logging._graylog.GraylogEndpoint"), |
96 | 96 | ("py:class", "fastcs.logging._graylog.GraylogStaticFields"), |
97 | 97 | ("py:class", "fastcs.logging._graylog.GraylogEnvFields"), |
98 | 98 | ("py:obj", "fastcs.control_system.build_controller_api"), |
99 | | - ("py:obj", "fastcs.transport.epics.util.controller_pv_prefix"), |
| 99 | + ("py:obj", "fastcs.transports.epics.util.controller_pv_prefix"), |
100 | 100 | ("docutils", "fastcs.demo.controllers.TemperatureControllerSettings"), |
101 | 101 | # TypeVar without docstrings still give warnings |
102 | | - ("py:class", "fastcs.datatypes.T_Numerical"), |
103 | 102 | ("py:class", "strawberry.schema.schema.Schema"), |
104 | 103 | ] |
105 | 104 | nitpick_ignore_regex = [ |
106 | | - ("py:class", "fastcs.*.T"), |
107 | | - ("py:obj", "fastcs.*.T"), |
| 105 | + ("py:class", r"fastcs.*.DType_T"), |
| 106 | + ("py:class", r"fastcs.*.Numeric_T"), |
| 107 | + ("py:obj", r"fastcs.*.DType_T"), |
108 | 108 | (r"py:.*", r"fastcs\.demo.*"), |
109 | 109 | (r"py:.*", r"tickit.*"), |
| 110 | + ("py:class", r"numpy.*"), |
110 | 111 | ] |
111 | 112 |
|
112 | 113 | suppress_warnings = ["docutils"] |
|
149 | 150 | # docs in the python documentation. |
150 | 151 | intersphinx_mapping = { |
151 | 152 | "python": ("https://docs.python.org/3/", None), |
| 153 | + "numpy": ("https://numpy.org/doc/stable/", None), |
152 | 154 | } |
153 | 155 |
|
154 | 156 | # A dictionary of graphviz graph attributes for inheritance diagrams. |
|
0 commit comments