plopp 25.6.1__tar.gz → 25.7.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {plopp-25.6.1 → plopp-25.7.1}/.copier-answers.yml +1 -1
- plopp-25.7.1/.github/workflows/nightly_at_main_lower_bound.yml +37 -0
- {plopp-25.6.1 → plopp-25.7.1}/.github/workflows/release.yml +2 -46
- {plopp-25.6.1 → plopp-25.7.1}/.pre-commit-config.yaml +2 -0
- plopp-25.7.1/PKG-INFO +72 -0
- {plopp-25.6.1 → plopp-25.7.1}/README.md +1 -1
- {plopp-25.6.1 → plopp-25.7.1}/docs/about/index.md +2 -2
- {plopp-25.6.1 → plopp-25.7.1}/docs/conf.py +4 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/gallery/streaming-plot.ipynb +148 -2
- {plopp-25.6.1 → plopp-25.7.1}/docs/index.md +2 -2
- {plopp-25.6.1 → plopp-25.7.1}/docs/plotting/slicer-plot.ipynb +42 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/plotting/super-plot.ipynb +2 -3
- {plopp-25.6.1 → plopp-25.7.1}/pyproject.toml +24 -22
- {plopp-25.6.1 → plopp-25.7.1}/requirements/base.in +2 -2
- {plopp-25.6.1 → plopp-25.7.1}/requirements/base.txt +3 -3
- {plopp-25.6.1 → plopp-25.7.1}/requirements/basetest.in +15 -15
- {plopp-25.6.1 → plopp-25.7.1}/requirements/basetest.txt +19 -17
- {plopp-25.6.1 → plopp-25.7.1}/requirements/ci.txt +6 -6
- {plopp-25.6.1 → plopp-25.7.1}/requirements/dev.txt +7 -15
- {plopp-25.6.1 → plopp-25.7.1}/requirements/docs.in +1 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/docs.txt +23 -6
- {plopp-25.6.1 → plopp-25.7.1}/requirements/mypy.txt +1 -1
- plopp-25.7.1/requirements/nightly.in +23 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/nightly.txt +19 -17
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/core/graph.py +2 -2
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/core/helpers.py +1 -1
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/core/node_class.py +3 -3
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/plotting/common.py +3 -3
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/plotting/slicer.py +10 -1
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/widgets/drawing.py +2 -2
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/widgets/linesave.py +1 -1
- plopp-25.7.1/src/plopp/widgets/slice.py +186 -0
- plopp-25.7.1/src/plopp.egg-info/PKG-INFO +72 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp.egg-info/SOURCES.txt +1 -1
- plopp-25.7.1/src/plopp.egg-info/requires.txt +30 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/core/node_test.py +7 -7
- {plopp-25.6.1 → plopp-25.7.1}/tests/high_level_test.py +2 -2
- {plopp-25.6.1 → plopp-25.7.1}/tests/plotting/plot_1d_test.py +6 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/plotting/slicer_test.py +11 -11
- {plopp-25.6.1 → plopp-25.7.1}/tests/plotting/superplot_test.py +4 -6
- {plopp-25.6.1 → plopp-25.7.1}/tests/widgets/slice_test.py +23 -17
- plopp-25.6.1/PKG-INFO +0 -102
- plopp-25.6.1/conda/meta.yaml +0 -60
- plopp-25.6.1/requirements/nightly.in +0 -23
- plopp-25.6.1/src/plopp/widgets/slice.py +0 -135
- plopp-25.6.1/src/plopp.egg-info/PKG-INFO +0 -102
- plopp-25.6.1/src/plopp.egg-info/requires.txt +0 -30
- {plopp-25.6.1 → plopp-25.7.1}/.github/dependabot.yml +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/.github/workflows/ci.yml +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/.github/workflows/docs.yml +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/.github/workflows/nightly_at_main.yml +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/.github/workflows/nightly_at_release.yml +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/.github/workflows/python-version-ci +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/.github/workflows/test.yml +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/.github/workflows/unpinned.yml +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/.github/workflows/weekly_windows_macos.yml +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/.gitignore +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/.python-version +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/CODE_OF_CONDUCT.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/CONTRIBUTING.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/LICENSE +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/MANIFEST.in +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/anaconda-icon.js +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/circle-exclamation.svg +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/custom.css +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/customization/custom-interfaces.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/customization/graph-node-tips.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/customization/subplots.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/customization/tweaking-figures.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/favicon.ico +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/gallery/README.txt +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/gallery/peeling-layers-thumbnail.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/gallery/scatter3d-with-slider-thumbnail.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/gallery/scatter3d-with-threshold-thumbnail.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/logo-dark.svg +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/logo-large-dark.svg +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/logo-large.svg +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/logo.svg +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/plotting/image-plot.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/plotting/inspector-plot.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/plotting/line-plot.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/plotting/mesh3d-plot.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/plotting/scatter-plot.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/plotting/scatter3d-plot.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/plotting/slicer-plot.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_static/plotting/super-plot.png +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_templates/class-template.rst +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_templates/doc_version.html +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_templates/module-template.rst +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_templates/scipp-class-template.rst +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/_templates/scipp-module-template.rst +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/api-reference/index.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/api-reference/matplotlib.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/api-reference/plotly.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/api-reference/pythreejs.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/customization/custom-interfaces.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/customization/graph-node-tips.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/customization/index.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/customization/subplots.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/customization/tweaking-figures.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/developer/coding-conventions.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/developer/dependency-management.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/developer/getting-started.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/developer/index.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/gallery/index.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/gallery/interactive-masking.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/gallery/masking-a-range.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/gallery/nyc-taxi.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/gallery/peeling-layers.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/gallery/polar-plots.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/gallery/rectangle-selection.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/gallery/scatter3d-with-slider.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/gallery/scatter3d-with-threshold.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/gallery/tiled-random-samples.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/gallery/updating-scatter.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/getting-started/index.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/getting-started/installation.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/getting-started/numpy-pandas-xarray.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/getting-started/overview.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/getting-started/saving-figures.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/plotting/image-plot.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/plotting/index.md +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/plotting/inspector-plot.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/plotting/line-plot.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/plotting/mesh3d-plot.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/plotting/scatter-plot.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/docs/plotting/scatter3d-plot.ipynb +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/ci.in +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/dev.in +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/make_base.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/mini.in +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/mini.txt +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/mypy.in +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/noplotly.in +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/noplotly.txt +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/static.in +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/static.txt +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/test.in +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/test.txt +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/wheels.in +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/requirements/wheels.txt +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/resources/logo-plopp-2022.svg +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/setup.cfg +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/__init__.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/__init__.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/common.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/matplotlib/__init__.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/matplotlib/canvas.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/matplotlib/fast_image.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/matplotlib/figure.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/matplotlib/image.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/matplotlib/line.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/matplotlib/mesh_image.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/matplotlib/scatter.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/matplotlib/tiled.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/matplotlib/utils.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/plotly/__init__.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/plotly/canvas.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/plotly/figure.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/plotly/line.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/pythreejs/__init__.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/pythreejs/canvas.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/pythreejs/figure.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/pythreejs/mesh3d.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/pythreejs/outline.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/backends/pythreejs/scatter3d.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/core/__init__.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/core/__init__.pyi +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/core/limits.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/core/typing.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/core/utils.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/core/view.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/data/__init__.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/data/examples.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/data/factory.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/data/testing.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/graphics/__init__.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/graphics/__init__.pyi +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/graphics/basefig.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/graphics/bbox.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/graphics/camera.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/graphics/colormapper.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/graphics/figures.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/graphics/graphicalview.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/graphics/tiled.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/plotting/__init__.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/plotting/__init__.pyi +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/plotting/inspector.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/plotting/mesh3d.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/plotting/plot.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/plotting/scatter.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/plotting/scatter3d.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/plotting/superplot.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/plotting/xyplot.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/py.typed +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/utils.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/widgets/__init__.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/widgets/__init__.pyi +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/widgets/box.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/widgets/checkboxes.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/widgets/clip3d.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/widgets/debounce.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/widgets/style.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/widgets/toolbar.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp/widgets/tools.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp.egg-info/dependency_links.txt +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/src/plopp.egg-info/top_level.txt +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/backends/matplotlib/mpl_image_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/backends/matplotlib/mpl_line_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/backends/matplotlib/mpl_plot_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/backends/matplotlib/mpl_scatter_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/backends/matplotlib/mpl_tiled_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/backends/plotly/conftest.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/backends/plotly/plotly_line_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/backends/pythreejs/pythreejs_canvas_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/backends/pythreejs/pythreejs_scatter3d_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/conftest.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/core/graph_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/core/limits_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/core/utils_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/graphics/artists_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/graphics/canvas_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/graphics/colormapper_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/graphics/figures_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/minimal_plot_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/package_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/plotting/common_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/plotting/inspector_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/plotting/mesh3d_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/plotting/plot_2d_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/plotting/scatter3d_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/plotting/scatter_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/plotting/xyplot_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/widgets/box_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/widgets/checkboxes_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tests/widgets/clip3d_test.py +0 -0
- {plopp-25.6.1 → plopp-25.7.1}/tox.ini +0 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
name: Nightly test using lower bound dependencies
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
schedule:
|
|
6
|
+
- cron: '30 1 * * 1-5'
|
|
7
|
+
|
|
8
|
+
jobs:
|
|
9
|
+
setup:
|
|
10
|
+
name: Setup variables
|
|
11
|
+
runs-on: 'ubuntu-24.04'
|
|
12
|
+
outputs:
|
|
13
|
+
min_python: ${{ steps.vars.outputs.min_python }}
|
|
14
|
+
steps:
|
|
15
|
+
- uses: actions/checkout@v4
|
|
16
|
+
- name: Get Python version for other CI jobs
|
|
17
|
+
id: vars
|
|
18
|
+
run: echo "min_python=$(< .github/workflows/python-version-ci)" >> "$GITHUB_OUTPUT"
|
|
19
|
+
|
|
20
|
+
tests:
|
|
21
|
+
name: Tests at lower bound
|
|
22
|
+
needs: setup
|
|
23
|
+
strategy:
|
|
24
|
+
matrix:
|
|
25
|
+
os: ['ubuntu-24.04']
|
|
26
|
+
python:
|
|
27
|
+
- version: '${{needs.setup.outputs.min_python}}'
|
|
28
|
+
runs-on: ${{ matrix.os }}
|
|
29
|
+
env:
|
|
30
|
+
ESS_PROTECTED_FILESTORE_USERNAME: ${{ secrets.ESS_PROTECTED_FILESTORE_USERNAME }}
|
|
31
|
+
ESS_PROTECTED_FILESTORE_PASSWORD: ${{ secrets.ESS_PROTECTED_FILESTORE_PASSWORD }}
|
|
32
|
+
steps:
|
|
33
|
+
- uses: actions/checkout@v4
|
|
34
|
+
- uses: astral-sh/setup-uv@v6
|
|
35
|
+
with:
|
|
36
|
+
python-version: ${{ matrix.python.version }}
|
|
37
|
+
- run: uv run --extra=test --resolution=lowest-direct pytest
|
|
@@ -5,34 +5,7 @@ on:
|
|
|
5
5
|
types: [published]
|
|
6
6
|
workflow_dispatch:
|
|
7
7
|
|
|
8
|
-
defaults:
|
|
9
|
-
run:
|
|
10
|
-
shell: bash -l {0} # required for conda env
|
|
11
|
-
|
|
12
8
|
jobs:
|
|
13
|
-
build_conda:
|
|
14
|
-
name: Conda build
|
|
15
|
-
runs-on: 'ubuntu-24.04'
|
|
16
|
-
|
|
17
|
-
steps:
|
|
18
|
-
- uses: actions/checkout@v4
|
|
19
|
-
with:
|
|
20
|
-
submodules: true
|
|
21
|
-
fetch-depth: 0 # history required so setuptools_scm can determine version
|
|
22
|
-
|
|
23
|
-
- uses: mamba-org/setup-micromamba@v1
|
|
24
|
-
with:
|
|
25
|
-
environment-name: build-env
|
|
26
|
-
create-args: >-
|
|
27
|
-
conda-build
|
|
28
|
-
boa
|
|
29
|
-
- run: conda mambabuild --channel conda-forge --channel scipp --no-anaconda-upload --override-channels --output-folder conda/package conda
|
|
30
|
-
|
|
31
|
-
- uses: actions/upload-artifact@v4
|
|
32
|
-
with:
|
|
33
|
-
name: conda-package-noarch
|
|
34
|
-
path: conda/package/noarch/*.tar.bz2
|
|
35
|
-
|
|
36
9
|
build_wheels:
|
|
37
10
|
name: Wheels
|
|
38
11
|
runs-on: 'ubuntu-24.04'
|
|
@@ -60,7 +33,7 @@ jobs:
|
|
|
60
33
|
|
|
61
34
|
upload_pypi:
|
|
62
35
|
name: Deploy PyPI
|
|
63
|
-
needs:
|
|
36
|
+
needs: build_wheels
|
|
64
37
|
runs-on: 'ubuntu-24.04'
|
|
65
38
|
environment: release
|
|
66
39
|
permissions:
|
|
@@ -70,25 +43,8 @@ jobs:
|
|
|
70
43
|
- uses: actions/download-artifact@v4
|
|
71
44
|
- uses: pypa/gh-action-pypi-publish@v1.12.4
|
|
72
45
|
|
|
73
|
-
upload_conda:
|
|
74
|
-
name: Deploy Conda
|
|
75
|
-
needs: [build_wheels, build_conda]
|
|
76
|
-
runs-on: 'ubuntu-24.04'
|
|
77
|
-
if: github.event_name == 'release' && github.event.action == 'published'
|
|
78
|
-
|
|
79
|
-
steps:
|
|
80
|
-
- uses: actions/download-artifact@v4
|
|
81
|
-
- uses: mamba-org/setup-micromamba@v1
|
|
82
|
-
with:
|
|
83
|
-
environment-name: upload-env
|
|
84
|
-
# frozen python due to breaking removal of 'imp' in 3.12
|
|
85
|
-
create-args: >-
|
|
86
|
-
anaconda-client
|
|
87
|
-
python=3.11
|
|
88
|
-
- run: anaconda --token ${{ secrets.ANACONDATOKEN }} upload --user scipp --label main $(ls conda-package-noarch/*.tar.bz2)
|
|
89
|
-
|
|
90
46
|
docs:
|
|
91
|
-
needs:
|
|
47
|
+
needs: upload_pypi
|
|
92
48
|
uses: ./.github/workflows/docs.yml
|
|
93
49
|
with:
|
|
94
50
|
publish: ${{ github.event_name == 'release' && github.event.action == 'published' }}
|
plopp-25.7.1/PKG-INFO
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: plopp
|
|
3
|
+
Version: 25.7.1
|
|
4
|
+
Summary: Visualization library for Scipp
|
|
5
|
+
Author: Scipp contributors
|
|
6
|
+
License-Expression: BSD-3-Clause
|
|
7
|
+
Project-URL: Bug Tracker, https://github.com/scipp/plopp/issues
|
|
8
|
+
Project-URL: Documentation, https://scipp.github.io/plopp
|
|
9
|
+
Project-URL: Source, https://github.com/scipp/plopp
|
|
10
|
+
Classifier: Intended Audience :: Science/Research
|
|
11
|
+
Classifier: Natural Language :: English
|
|
12
|
+
Classifier: Operating System :: OS Independent
|
|
13
|
+
Classifier: Programming Language :: Python :: 3
|
|
14
|
+
Classifier: Programming Language :: Python :: 3 :: Only
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
19
|
+
Classifier: Topic :: Scientific/Engineering
|
|
20
|
+
Classifier: Typing :: Typed
|
|
21
|
+
Requires-Python: >=3.10
|
|
22
|
+
Description-Content-Type: text/markdown
|
|
23
|
+
License-File: LICENSE
|
|
24
|
+
Requires-Dist: lazy-loader>=0.4
|
|
25
|
+
Requires-Dist: matplotlib>=3.8
|
|
26
|
+
Provides-Extra: scipp
|
|
27
|
+
Requires-Dist: scipp>=25.5.0; extra == "scipp"
|
|
28
|
+
Provides-Extra: all
|
|
29
|
+
Requires-Dist: scipp>=25.5.0; extra == "all"
|
|
30
|
+
Requires-Dist: ipympl>0.8.4; extra == "all"
|
|
31
|
+
Requires-Dist: pythreejs>=2.4.1; extra == "all"
|
|
32
|
+
Requires-Dist: mpltoolbox>=24.6.0; extra == "all"
|
|
33
|
+
Requires-Dist: ipywidgets>=8.1.0; extra == "all"
|
|
34
|
+
Requires-Dist: graphviz>=0.20.3; extra == "all"
|
|
35
|
+
Provides-Extra: test
|
|
36
|
+
Requires-Dist: graphviz>=0.20.3; extra == "test"
|
|
37
|
+
Requires-Dist: h5py>=3.12; extra == "test"
|
|
38
|
+
Requires-Dist: ipympl>=0.8.4; extra == "test"
|
|
39
|
+
Requires-Dist: ipywidgets>=8.1.0; extra == "test"
|
|
40
|
+
Requires-Dist: mpltoolbox>=24.6.0; extra == "test"
|
|
41
|
+
Requires-Dist: pandas>=2.2.2; extra == "test"
|
|
42
|
+
Requires-Dist: plotly>=5.15.0; extra == "test"
|
|
43
|
+
Requires-Dist: pooch>=1.5; extra == "test"
|
|
44
|
+
Requires-Dist: pyarrow>=10.0.0; extra == "test"
|
|
45
|
+
Requires-Dist: pytest>=7.0; extra == "test"
|
|
46
|
+
Requires-Dist: pythreejs>=2.4.1; extra == "test"
|
|
47
|
+
Requires-Dist: scipp>=25.5.0; extra == "test"
|
|
48
|
+
Requires-Dist: scipy>=1.10.0; extra == "test"
|
|
49
|
+
Requires-Dist: xarray>=v2024.05.0; extra == "test"
|
|
50
|
+
Requires-Dist: anywidget>=0.9.0; extra == "test"
|
|
51
|
+
Dynamic: license-file
|
|
52
|
+
|
|
53
|
+
<img src="docs/_static/logo.svg" width="50%" />
|
|
54
|
+
|
|
55
|
+
[](CODE_OF_CONDUCT.md)
|
|
56
|
+
[](https://pypi.python.org/pypi/plopp)
|
|
57
|
+
[](https://anaconda.org/conda-forge/plopp)
|
|
58
|
+
[](https://scipp.github.io/plopp/)
|
|
59
|
+
[](LICENSE)
|
|
60
|
+
[](https://zenodo.org/badge/latestdoi/528859752)
|
|
61
|
+
|
|
62
|
+
# Plopp
|
|
63
|
+
|
|
64
|
+
## About
|
|
65
|
+
|
|
66
|
+
Visualization library for Scipp
|
|
67
|
+
|
|
68
|
+
## Installation
|
|
69
|
+
|
|
70
|
+
```sh
|
|
71
|
+
python -m pip install plopp
|
|
72
|
+
```
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
[](CODE_OF_CONDUCT.md)
|
|
4
4
|
[](https://pypi.python.org/pypi/plopp)
|
|
5
|
-
[](https://anaconda.org/conda-forge/plopp)
|
|
6
6
|
[](https://scipp.github.io/plopp/)
|
|
7
7
|
[](LICENSE)
|
|
8
8
|
[](https://zenodo.org/badge/latestdoi/528859752)
|
|
@@ -2,11 +2,11 @@
|
|
|
2
2
|
|
|
3
3
|
## Development
|
|
4
4
|
|
|
5
|
-
Plopp is an open source project by the [European Spallation Source ERIC](https://
|
|
5
|
+
Plopp is an open source project by the [European Spallation Source ERIC](https://ess.eu/) (ESS).
|
|
6
6
|
|
|
7
7
|
## License
|
|
8
8
|
|
|
9
|
-
Plopp is available as open source under the [BSD-3 license](https://opensource.org/
|
|
9
|
+
Plopp is available as open source under the [BSD-3 license](https://opensource.org/license/BSD-3-Clause).
|
|
10
10
|
|
|
11
11
|
## Citing Plopp
|
|
12
12
|
|
|
@@ -32,6 +32,7 @@ extensions = [
|
|
|
32
32
|
'sphinx_autodoc_typehints',
|
|
33
33
|
'sphinx_copybutton',
|
|
34
34
|
'sphinx_design',
|
|
35
|
+
'sphinxcontrib.autodoc_pydantic',
|
|
35
36
|
'nbsphinx',
|
|
36
37
|
'sphinx_gallery.load_style',
|
|
37
38
|
'myst_parser',
|
|
@@ -248,6 +249,9 @@ doctest_default_flags = (
|
|
|
248
249
|
linkcheck_ignore = [
|
|
249
250
|
# Specific lines in Github blobs cannot be found by linkcheck.
|
|
250
251
|
r'https?://github\.com/.*?/blob/[a-f0-9]+/.+?#',
|
|
252
|
+
# Linkcheck seems to be denied access by some DOI resolvers.
|
|
253
|
+
# Since DOIs are supposed to be permanent, we don't need to check them.'
|
|
254
|
+
r'https://doi\.org/',
|
|
251
255
|
]
|
|
252
256
|
|
|
253
257
|
# -- Options for nbsphinx gallery------------------------------------------
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
"metadata": {},
|
|
126
126
|
"outputs": [],
|
|
127
127
|
"source": [
|
|
128
|
-
"# Display figure
|
|
128
|
+
"# Display figure and play widget\n",
|
|
129
129
|
"ipw.VBox([fig, play])"
|
|
130
130
|
]
|
|
131
131
|
},
|
|
@@ -154,7 +154,12 @@
|
|
|
154
154
|
"execution_count": null,
|
|
155
155
|
"id": "10",
|
|
156
156
|
"metadata": {
|
|
157
|
-
"
|
|
157
|
+
"editable": true,
|
|
158
|
+
"nbsphinx": "hidden",
|
|
159
|
+
"slideshow": {
|
|
160
|
+
"slide_type": ""
|
|
161
|
+
},
|
|
162
|
+
"tags": []
|
|
158
163
|
},
|
|
159
164
|
"outputs": [],
|
|
160
165
|
"source": [
|
|
@@ -162,6 +167,147 @@
|
|
|
162
167
|
"# It is hidden from the online documentation.\n",
|
|
163
168
|
"fig.save('../_static/gallery/streaming-plot-thumbnail.png')"
|
|
164
169
|
]
|
|
170
|
+
},
|
|
171
|
+
{
|
|
172
|
+
"cell_type": "markdown",
|
|
173
|
+
"id": "11",
|
|
174
|
+
"metadata": {},
|
|
175
|
+
"source": [
|
|
176
|
+
"## Streaming on a 3D figure\n",
|
|
177
|
+
"\n",
|
|
178
|
+
"The same works for 3D scatter plots.\n",
|
|
179
|
+
"\n",
|
|
180
|
+
"We make a slightly different data generator:"
|
|
181
|
+
]
|
|
182
|
+
},
|
|
183
|
+
{
|
|
184
|
+
"cell_type": "code",
|
|
185
|
+
"execution_count": null,
|
|
186
|
+
"id": "12",
|
|
187
|
+
"metadata": {
|
|
188
|
+
"editable": true,
|
|
189
|
+
"slideshow": {
|
|
190
|
+
"slide_type": ""
|
|
191
|
+
},
|
|
192
|
+
"tags": []
|
|
193
|
+
},
|
|
194
|
+
"outputs": [],
|
|
195
|
+
"source": [
|
|
196
|
+
"class DataGen:\n",
|
|
197
|
+
" \"\"\"A data generator which makes new data on a cylindrical detector panel\"\"\"\n",
|
|
198
|
+
" def __init__(self):\n",
|
|
199
|
+
" nphi = 100\n",
|
|
200
|
+
" nz = 20\n",
|
|
201
|
+
"\n",
|
|
202
|
+
" r = sc.scalar(10.0, unit='m')\n",
|
|
203
|
+
" phi = sc.linspace('phi', 0, np.pi, nphi + 1, unit='rad')\n",
|
|
204
|
+
" z = sc.linspace('z', -3.0, 3.0, nz + 1, unit='m')\n",
|
|
205
|
+
"\n",
|
|
206
|
+
" p = sc.midpoints(phi)\n",
|
|
207
|
+
" x = r * sc.cos(p)\n",
|
|
208
|
+
" y = r * sc.sin(p)\n",
|
|
209
|
+
" sizes = {'z': nz, 'phi': nphi}\n",
|
|
210
|
+
"\n",
|
|
211
|
+
" self.data = sc.DataArray(\n",
|
|
212
|
+
" data=sc.zeros(sizes=sizes, unit='counts'),\n",
|
|
213
|
+
" coords={\n",
|
|
214
|
+
" 'z': z,\n",
|
|
215
|
+
" 'phi': phi,\n",
|
|
216
|
+
" 'position': sc.spatial.as_vectors(\n",
|
|
217
|
+
" sc.broadcast(x, sizes=sizes),\n",
|
|
218
|
+
" sc.broadcast(sc.midpoints(z), sizes=sizes),\n",
|
|
219
|
+
" sc.broadcast(y, sizes=sizes)\n",
|
|
220
|
+
" ),\n",
|
|
221
|
+
" },\n",
|
|
222
|
+
" )\n",
|
|
223
|
+
"\n",
|
|
224
|
+
" def __call__(self, iteration: int=0):\n",
|
|
225
|
+
" # Generate new data when called\n",
|
|
226
|
+
" npoints = 100\n",
|
|
227
|
+
" phi = sc.array(dims=['event'], values=np.random.normal(scale=0.5, loc=0.5*np.pi, size=npoints), unit='rad')\n",
|
|
228
|
+
" z = sc.array(dims=['event'], values=np.random.normal(scale=2, size=npoints), unit='m')\n",
|
|
229
|
+
" new_events = sc.DataArray(\n",
|
|
230
|
+
" data=sc.ones(sizes=phi.sizes, unit=\"counts\"),\n",
|
|
231
|
+
" coords={'phi': phi, 'z': z})\n",
|
|
232
|
+
" # Histogram and add to container\n",
|
|
233
|
+
" self.data += new_events.hist({x: self.data.coords[x] for x in (\"phi\", \"z\")})\n",
|
|
234
|
+
" return self.data\n",
|
|
235
|
+
"\n",
|
|
236
|
+
"data = DataGen()"
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"cell_type": "markdown",
|
|
241
|
+
"id": "13",
|
|
242
|
+
"metadata": {},
|
|
243
|
+
"source": [
|
|
244
|
+
"We then connect the streaming node to a 3D scatter plot:"
|
|
245
|
+
]
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"cell_type": "code",
|
|
249
|
+
"execution_count": null,
|
|
250
|
+
"id": "14",
|
|
251
|
+
"metadata": {
|
|
252
|
+
"editable": true,
|
|
253
|
+
"slideshow": {
|
|
254
|
+
"slide_type": ""
|
|
255
|
+
},
|
|
256
|
+
"tags": []
|
|
257
|
+
},
|
|
258
|
+
"outputs": [],
|
|
259
|
+
"source": [
|
|
260
|
+
"play = ipw.Play(min=0, max=500, interval=100)\n",
|
|
261
|
+
"play_node = pp.widget_node(play)\n",
|
|
262
|
+
"stream_node = pp.Node(data, iteration=play_node)\n",
|
|
263
|
+
"fig = pp.scatter3d(stream_node, pos='position', cbar=True, pixel_size=0.3, autoscale=False)"
|
|
264
|
+
]
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"cell_type": "code",
|
|
268
|
+
"execution_count": null,
|
|
269
|
+
"id": "15",
|
|
270
|
+
"metadata": {
|
|
271
|
+
"editable": true,
|
|
272
|
+
"nbsphinx": "hidden",
|
|
273
|
+
"slideshow": {
|
|
274
|
+
"slide_type": ""
|
|
275
|
+
},
|
|
276
|
+
"tags": []
|
|
277
|
+
},
|
|
278
|
+
"outputs": [],
|
|
279
|
+
"source": [
|
|
280
|
+
"for _ in range(500):\n",
|
|
281
|
+
" play_node.notify_children(\"update\")\n",
|
|
282
|
+
"fig.view.fit_to_data()"
|
|
283
|
+
]
|
|
284
|
+
},
|
|
285
|
+
{
|
|
286
|
+
"cell_type": "code",
|
|
287
|
+
"execution_count": null,
|
|
288
|
+
"id": "16",
|
|
289
|
+
"metadata": {
|
|
290
|
+
"editable": true,
|
|
291
|
+
"slideshow": {
|
|
292
|
+
"slide_type": ""
|
|
293
|
+
},
|
|
294
|
+
"tags": []
|
|
295
|
+
},
|
|
296
|
+
"outputs": [],
|
|
297
|
+
"source": [
|
|
298
|
+
"# Display figure and play widget\n",
|
|
299
|
+
"ipw.VBox([fig, play])"
|
|
300
|
+
]
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"cell_type": "code",
|
|
304
|
+
"execution_count": null,
|
|
305
|
+
"id": "17",
|
|
306
|
+
"metadata": {},
|
|
307
|
+
"outputs": [],
|
|
308
|
+
"source": [
|
|
309
|
+
"pp.show_graph(fig)"
|
|
310
|
+
]
|
|
165
311
|
}
|
|
166
312
|
],
|
|
167
313
|
"metadata": {
|
|
@@ -24,10 +24,10 @@
|
|
|
24
24
|
|
|
25
25
|
# {transparent}`Plopp`
|
|
26
26
|
|
|
27
|
-
<
|
|
27
|
+
<div style="font-size:1.2em;font-style:italic;color:var(--pst-color-text-muted);text-align:center;">
|
|
28
28
|
Visualization library for Scipp
|
|
29
29
|
</br></br>
|
|
30
|
-
</
|
|
30
|
+
</div>
|
|
31
31
|
|
|
32
32
|
|
|
33
33
|
## Getting started
|
|
@@ -61,6 +61,48 @@
|
|
|
61
61
|
"source": [
|
|
62
62
|
"pp.slicer(da, keep=['x'])"
|
|
63
63
|
]
|
|
64
|
+
},
|
|
65
|
+
{
|
|
66
|
+
"cell_type": "markdown",
|
|
67
|
+
"id": "6",
|
|
68
|
+
"metadata": {},
|
|
69
|
+
"source": [
|
|
70
|
+
"## Animate the sliders\n",
|
|
71
|
+
"\n",
|
|
72
|
+
"<div class=\"versionadded\" style=\"font-weight: bold;\">\n",
|
|
73
|
+
"\n",
|
|
74
|
+
"<img src=\"../_static/circle-exclamation.svg\" width=\"16\" height=\"16\" />\n",
|
|
75
|
+
" \n",
|
|
76
|
+
"New in version 25.07.0.\n",
|
|
77
|
+
"\n",
|
|
78
|
+
"</div>\n",
|
|
79
|
+
"\n",
|
|
80
|
+
"It is possible to display some animation controls (play button) next to the slider,\n",
|
|
81
|
+
"by using the `enable_player=True` option:"
|
|
82
|
+
]
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"cell_type": "code",
|
|
86
|
+
"execution_count": null,
|
|
87
|
+
"id": "7",
|
|
88
|
+
"metadata": {},
|
|
89
|
+
"outputs": [],
|
|
90
|
+
"source": [
|
|
91
|
+
"pp.slicer(da, keep=['x', 'y'], enable_player=True)"
|
|
92
|
+
]
|
|
93
|
+
},
|
|
94
|
+
{
|
|
95
|
+
"cell_type": "markdown",
|
|
96
|
+
"id": "8",
|
|
97
|
+
"metadata": {},
|
|
98
|
+
"source": [
|
|
99
|
+
"## Can I have a 3D plot with a slider?\n",
|
|
100
|
+
"\n",
|
|
101
|
+
"3D plots are not supported out of the box by the [plopp.slicer](../generated/plopp.slicer.rst) function,\n",
|
|
102
|
+
"but it is still possible to create them.\n",
|
|
103
|
+
"\n",
|
|
104
|
+
"An example in the [gallery](../gallery/scatter3d-with-slider.ipynb) shows you how to do this."
|
|
105
|
+
]
|
|
64
106
|
}
|
|
65
107
|
],
|
|
66
108
|
"metadata": {
|
|
@@ -57,7 +57,7 @@
|
|
|
57
57
|
"source": [
|
|
58
58
|
"tool = p.right_bar[0]\n",
|
|
59
59
|
"b = tool.button\n",
|
|
60
|
-
"sl = p.bottom_bar[0].controls['y']
|
|
60
|
+
"sl = p.bottom_bar[0].controls['y']\n",
|
|
61
61
|
"b.click()\n",
|
|
62
62
|
"sl.value = 20\n",
|
|
63
63
|
"b.click()\n",
|
|
@@ -102,8 +102,7 @@
|
|
|
102
102
|
"mimetype": "text/x-python",
|
|
103
103
|
"name": "python",
|
|
104
104
|
"nbconvert_exporter": "python",
|
|
105
|
-
"pygments_lexer": "ipython3"
|
|
106
|
-
"version": "3.11.9"
|
|
105
|
+
"pygments_lexer": "ipython3"
|
|
107
106
|
}
|
|
108
107
|
},
|
|
109
108
|
"nbformat": 4,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
[build-system]
|
|
2
2
|
requires = [
|
|
3
|
-
"setuptools>=
|
|
3
|
+
"setuptools>=77",
|
|
4
4
|
"setuptools_scm[toml]>=8.0",
|
|
5
5
|
]
|
|
6
6
|
build-backend = "setuptools.build_meta"
|
|
@@ -9,11 +9,11 @@ build-backend = "setuptools.build_meta"
|
|
|
9
9
|
name = "plopp"
|
|
10
10
|
description = "Visualization library for Scipp"
|
|
11
11
|
authors = [{ name = "Scipp contributors" }]
|
|
12
|
-
license =
|
|
12
|
+
license = "BSD-3-Clause"
|
|
13
|
+
license-files = ["LICENSE"]
|
|
13
14
|
readme = "README.md"
|
|
14
15
|
classifiers = [
|
|
15
16
|
"Intended Audience :: Science/Research",
|
|
16
|
-
"License :: OSI Approved :: BSD License",
|
|
17
17
|
"Natural Language :: English",
|
|
18
18
|
"Operating System :: OS Independent",
|
|
19
19
|
"Programming Language :: Python :: 3",
|
|
@@ -31,31 +31,31 @@ requires-python = ">=3.10"
|
|
|
31
31
|
# Run 'tox -e deps' after making changes here. This will update requirement files.
|
|
32
32
|
# Make sure to list one dependency per line.
|
|
33
33
|
dependencies = [
|
|
34
|
-
"lazy-loader",
|
|
35
|
-
"matplotlib>=3.
|
|
34
|
+
"lazy-loader>=0.4",
|
|
35
|
+
"matplotlib>=3.8",
|
|
36
36
|
]
|
|
37
37
|
|
|
38
38
|
dynamic = ["version"]
|
|
39
39
|
|
|
40
40
|
[project.optional-dependencies]
|
|
41
|
-
scipp = ["scipp"]
|
|
42
|
-
all = ["scipp", "ipympl", "pythreejs", "mpltoolbox", "ipywidgets", "graphviz"]
|
|
41
|
+
scipp = ["scipp>=25.5.0"]
|
|
42
|
+
all = ["scipp>=25.5.0", "ipympl>0.8.4", "pythreejs>=2.4.1", "mpltoolbox>=24.6.0", "ipywidgets>=8.1.0", "graphviz>=0.20.3"]
|
|
43
43
|
test = [
|
|
44
|
-
"graphviz",
|
|
45
|
-
"h5py",
|
|
46
|
-
"ipympl",
|
|
47
|
-
"ipywidgets",
|
|
48
|
-
"mpltoolbox",
|
|
49
|
-
"pandas",
|
|
50
|
-
"plotly",
|
|
51
|
-
"pooch",
|
|
52
|
-
"pyarrow",
|
|
53
|
-
"pytest",
|
|
54
|
-
"pythreejs",
|
|
55
|
-
"scipp",
|
|
56
|
-
"scipy",
|
|
57
|
-
"xarray",
|
|
58
|
-
"anywidget"
|
|
44
|
+
"graphviz>=0.20.3",
|
|
45
|
+
"h5py>=3.12",
|
|
46
|
+
"ipympl>=0.8.4",
|
|
47
|
+
"ipywidgets>=8.1.0",
|
|
48
|
+
"mpltoolbox>=24.6.0",
|
|
49
|
+
"pandas>=2.2.2",
|
|
50
|
+
"plotly>=5.15.0",
|
|
51
|
+
"pooch>=1.5",
|
|
52
|
+
"pyarrow>=10.0.0",
|
|
53
|
+
"pytest>=7.0",
|
|
54
|
+
"pythreejs>=2.4.1",
|
|
55
|
+
"scipp>=25.5.0",
|
|
56
|
+
"scipy>=1.10.0",
|
|
57
|
+
"xarray>=v2024.05.0",
|
|
58
|
+
"anywidget>=0.9.0"
|
|
59
59
|
]
|
|
60
60
|
|
|
61
61
|
[project.urls]
|
|
@@ -84,6 +84,8 @@ filterwarnings = [
|
|
|
84
84
|
'ignore:There is no current event loop:DeprecationWarning',
|
|
85
85
|
# Should be removed once https://github.com/ipython/ipykernel/pull/1248 is released
|
|
86
86
|
'ignore:Parsing dates involving a day of month without a year:DeprecationWarning',
|
|
87
|
+
# Should be removed once we lower pin a matplotlib version that respects the deprecation
|
|
88
|
+
'ignore:.*parameter is deprecated and will be removed in Pillow 13.*:DeprecationWarning',
|
|
87
89
|
]
|
|
88
90
|
|
|
89
91
|
[tool.ruff]
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
# SHA1:
|
|
1
|
+
# SHA1:fdb11dd5d28bac2a11ab529e4f383611e6e42b57
|
|
2
2
|
#
|
|
3
3
|
# This file was generated by pip-compile-multi.
|
|
4
4
|
# To update, run:
|
|
@@ -9,7 +9,7 @@ contourpy==1.3.2
|
|
|
9
9
|
# via matplotlib
|
|
10
10
|
cycler==0.12.1
|
|
11
11
|
# via matplotlib
|
|
12
|
-
fonttools==4.58.
|
|
12
|
+
fonttools==4.58.5
|
|
13
13
|
# via matplotlib
|
|
14
14
|
kiwisolver==1.4.8
|
|
15
15
|
# via matplotlib
|
|
@@ -26,7 +26,7 @@ packaging==25.0
|
|
|
26
26
|
# via
|
|
27
27
|
# lazy-loader
|
|
28
28
|
# matplotlib
|
|
29
|
-
pillow==11.
|
|
29
|
+
pillow==11.3.0
|
|
30
30
|
# via matplotlib
|
|
31
31
|
pyparsing==3.2.3
|
|
32
32
|
# via matplotlib
|
|
@@ -7,18 +7,18 @@
|
|
|
7
7
|
# will not be touched by ``make_base.py``
|
|
8
8
|
# --- END OF CUSTOM SECTION ---
|
|
9
9
|
# The following was generated by 'tox -e deps', DO NOT EDIT MANUALLY!
|
|
10
|
-
graphviz
|
|
11
|
-
h5py
|
|
12
|
-
ipympl
|
|
13
|
-
ipywidgets
|
|
14
|
-
mpltoolbox
|
|
15
|
-
pandas
|
|
16
|
-
plotly
|
|
17
|
-
pooch
|
|
18
|
-
pyarrow
|
|
19
|
-
pytest
|
|
20
|
-
pythreejs
|
|
21
|
-
scipp
|
|
22
|
-
scipy
|
|
23
|
-
xarray
|
|
24
|
-
anywidget
|
|
10
|
+
graphviz>=0.20.3
|
|
11
|
+
h5py>=3.12
|
|
12
|
+
ipympl>=0.8.4
|
|
13
|
+
ipywidgets>=8.1.0
|
|
14
|
+
mpltoolbox>=24.6.0
|
|
15
|
+
pandas>=2.2.2
|
|
16
|
+
plotly>=5.15.0
|
|
17
|
+
pooch>=1.5
|
|
18
|
+
pyarrow>=10.0.0
|
|
19
|
+
pytest>=7.0
|
|
20
|
+
pythreejs>=2.4.1
|
|
21
|
+
scipp>=25.5.0
|
|
22
|
+
scipy>=1.10.0
|
|
23
|
+
xarray>=v2024.05.0
|
|
24
|
+
anywidget>=0.9.0
|