Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor: Rename jupyter_viz namespace to solara_viz #2188

Merged
merged 1 commit into from
Jul 29, 2024
Merged
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: 1 addition & 1 deletion docs/apis/visualization.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ For a detailed tutorial, please refer to our [Visualization Tutorial](../tutoria
## Jupyter Visualization

```{eval-rst}
.. automodule:: mesa.visualization.jupyter_viz
.. automodule:: mesa.visualization.solara_viz
:members:
:undoc-members:
:show-inheritance:
Expand Down
2 changes: 1 addition & 1 deletion mesa/visualization/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .jupyter_viz import JupyterViz, Slider, SolaraViz, make_text
from .solara_viz import JupyterViz, Slider, SolaraViz, make_text

__all__ = ["JupyterViz", "make_text", "Slider", "SolaraViz"]
File renamed without changes.
2 changes: 1 addition & 1 deletion tests/test_jupyter_viz.py → tests/test_solara_viz.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import solara

import mesa
from mesa.visualization.jupyter_viz import Slider, SolaraViz, UserInputs
from mesa.visualization.solara_viz import Slider, SolaraViz, UserInputs


class TestMakeUserInput(unittest.TestCase):
Expand Down