diff --git a/jdaviz/configs/cubeviz/plugins/tools.py b/jdaviz/configs/cubeviz/plugins/tools.py index 2def272785..7b2f1c42f1 100644 --- a/jdaviz/configs/cubeviz/plugins/tools.py +++ b/jdaviz/configs/cubeviz/plugins/tools.py @@ -170,7 +170,7 @@ def _mouse_move_worker(self, x, y): self._mark.visible = True self.viewer.start_stream() - self.viewer.update_cube(x, y) + self.viewer.update_audified_cube(x, y) self._profile_viewer.set_limits( y_min=np.nanmin(y_values) * 0.8, y_max=np.nanmax(y_values) * 1.2) diff --git a/jdaviz/configs/cubeviz/plugins/viewers.py b/jdaviz/configs/cubeviz/plugins/viewers.py index 4201b05c32..ed54bec4ce 100644 --- a/jdaviz/configs/cubeviz/plugins/viewers.py +++ b/jdaviz/configs/cubeviz/plugins/viewers.py @@ -106,7 +106,7 @@ def stop_stream(self): if self.stream and not self.stream.closed and self.stream_active: self.stream.stop() - def update_cube(self, x, y): + def update_audified_cube(self, x, y): if (not self.audified_cube or not hasattr(self.audified_cube, 'newsig') or not hasattr(self.audified_cube, 'sigcube')): return diff --git a/pyproject.toml b/pyproject.toml index 1f64a2e243..f03840a362 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -84,7 +84,6 @@ roman = [ ] strauss = [ "strauss", - "sounddevice" ] [build-system]