Skip to content
Open
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
2 changes: 2 additions & 0 deletions docs/changes/73.feature.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
* Make animations module mandatory
* Move dependencies of animations module from optional to mandatory
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -46,11 +46,11 @@ dependencies = [
"toml>=0.10.2",
"torch>=2.8.0",
"tqdm>=4.67.1",
"radionets-radiotools>=0.3.0",
]

[project.optional-dependencies]
pyvisgen = ["pyvisgen"]
animations = ["cartopy", "mergedeep", "radionets-radiotools"]

all = ["pyvisgrid[pyvisgen]"]

Expand Down
8 changes: 8 additions & 0 deletions src/pyvisgrid/plotting/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,15 @@
from pyvisgrid.plotting.animations import (
animate_observation,
plot_earth_layout,
plot_observation_state,
)
from pyvisgrid.plotting.plotting import plot_dirty_image, plot_mask, plot_ungridded_uv

__all__ = [
"plot_ungridded_uv",
"plot_mask",
"plot_dirty_image",
"plot_earth_layout",
"plot_observation_state",
"animate_observation",
]
Loading