hvplot 0.11.2rc1__tar.gz → 0.11.3__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.
- hvplot-0.11.3/.github/workflows/build.yaml +67 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/.github/workflows/docs.yaml +20 -30
- hvplot-0.11.3/.github/workflows/nightly_lock.yaml +25 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/.github/workflows/test.yaml +73 -43
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/.gitignore +4 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/.pre-commit-config.yaml +0 -9
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/PKG-INFO +14 -7
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/README.md +2 -2
- hvplot-0.11.3/doc/_ext/backend_styling_options.py +60 -0
- hvplot-0.11.3/doc/_ext/plotting_options_table.py +64 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/custom.css +6 -0
- hvplot-0.11.3/doc/_static/patch_templates/sourcelink.html +9 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/about.md +1 -1
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/conf.py +83 -7
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/conftest.py +17 -7
- hvplot-0.11.3/doc/developer_guide.md +276 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/index.md +16 -5
- hvplot-0.11.3/doc/ref/api/index.md +224 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.area.ipynb +40 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.bar.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.barh.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.bivariate.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.box.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.contour.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.contourf.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.dataset.ipynb +30 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.density.md +3 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.errorbars.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.heatmap.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.hexbin.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.hist.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.image.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.kde.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.labels.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.line.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.ohlc.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.paths.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.points.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.polygons.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.quadmesh.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.rgb.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.scatter.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.step.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.table.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.vectorfield.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.hvPlot.violin.ipynb +36 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.plotting.andrews_curves.ipynb +30 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.plotting.lag_plot.ipynb +30 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.plotting.parallel_coordinates.ipynb +30 -0
- hvplot-0.11.3/doc/ref/api/manual/hvplot.plotting.scatter_matrix.ipynb +30 -0
- hvplot-0.11.3/doc/ref/api_compatibility/index.md +10 -0
- hvplot-0.11.3/doc/ref/api_compatibility/pandas/Pandas_API.ipynb +2049 -0
- hvplot-0.11.3/doc/ref/api_compatibility/pandas/index.ipynb +558 -0
- hvplot-0.11.2rc1/doc/user_guide/Integrations.ipynb → hvplot-0.11.3/doc/ref/data_libraries.ipynb +59 -55
- hvplot-0.11.3/doc/ref/index.md +16 -0
- hvplot-0.11.3/doc/ref/installation.md +97 -0
- hvplot-0.11.3/doc/ref/plotting_extensions.ipynb +69 -0
- hvplot-0.11.3/doc/ref/plotting_options/data.ipynb +60 -0
- hvplot-0.11.3/doc/ref/plotting_options/index.md +106 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/heatmap.ipynb +1 -1
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/releases.md +44 -0
- hvplot-0.11.3/doc/topics.html +15 -0
- hvplot-0.11.3/doc/tutorials/getting_started.ipynb +862 -0
- hvplot-0.11.3/doc/tutorials/getting_started_pandas.ipynb +605 -0
- hvplot-0.11.3/doc/tutorials/index.md +47 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Gridded_Data.ipynb +1 -1
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Introduction.ipynb +2 -9
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Large_Timeseries.ipynb +2 -2
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Plotting.ipynb +4 -4
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Plotting_with_Matplotlib.ipynb +4 -4
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Plotting_with_Plotly.ipynb +3 -3
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Timeseries_Data.ipynb +2 -2
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Viewing.ipynb +5 -1
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/index.md +2 -15
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/__init__.py +19 -138
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/_version.py +9 -4
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/converter.py +417 -225
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/plotting/andrews_curves.py +11 -10
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/plotting/core.py +326 -276
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/plotting/lag_plot.py +14 -7
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/plotting/parallel_coordinates.py +6 -5
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/plotting/scatter_matrix.py +19 -18
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/conftest.py +20 -3
- hvplot-0.11.3/hvplot/tests/plotting/testohlc.py +93 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testcharts.py +12 -5
- hvplot-0.11.3/hvplot/tests/testdocstring.py +52 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testhelp.py +11 -8
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testoptions.py +22 -3
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testoverrides.py +2 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testpatch.py +4 -0
- hvplot-0.11.3/hvplot/tests/testpatchsignature.py +84 -0
- hvplot-0.11.3/hvplot/tests/testplotting.py +184 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testui.py +4 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/ui.py +37 -20
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/util.py +276 -2
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/utilities.py +77 -16
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot.egg-info/PKG-INFO +14 -7
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot.egg-info/SOURCES.txt +58 -17
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot.egg-info/entry_points.txt +1 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot.egg-info/requires.txt +8 -3
- hvplot-0.11.3/pixi.toml +271 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/pyproject.toml +10 -28
- hvplot-0.11.3/scripts/conda/build.sh +14 -0
- {hvplot-0.11.2rc1/conda.recipe → hvplot-0.11.3/scripts/conda/recipe}/meta.yaml +6 -4
- hvplot-0.11.3/scripts/download_data.py +19 -0
- hvplot-0.11.3/scripts/sync_git_tags.py +31 -0
- hvplot-0.11.2rc1/.github/workflows/build.yaml +0 -74
- hvplot-0.11.2rc1/doc/developer_guide/index.md +0 -176
- hvplot-0.11.2rc1/doc/getting_started/explorer.ipynb +0 -147
- hvplot-0.11.2rc1/doc/getting_started/hvplot.ipynb +0 -432
- hvplot-0.11.2rc1/doc/getting_started/index.md +0 -64
- hvplot-0.11.2rc1/doc/getting_started/installation.md +0 -23
- hvplot-0.11.2rc1/doc/getting_started/interactive.ipynb +0 -193
- hvplot-0.11.2rc1/doc/topics.md +0 -36
- hvplot-0.11.2rc1/doc/user_guide/Customization.ipynb +0 -312
- hvplot-0.11.2rc1/doc/user_guide/Pandas_API.ipynb +0 -1183
- hvplot-0.11.2rc1/envs/py3.10-tests.yaml +0 -80
- hvplot-0.11.2rc1/envs/py3.11-docs.yaml +0 -70
- hvplot-0.11.2rc1/envs/py3.11-tests.yaml +0 -80
- hvplot-0.11.2rc1/envs/py3.12-tests.yaml +0 -80
- hvplot-0.11.2rc1/envs/py3.9-tests.yaml +0 -79
- hvplot-0.11.2rc1/hvplot/tests/plotting/testohlc.py +0 -34
- hvplot-0.11.2rc1/hvplot/tests/testplotting.py +0 -73
- hvplot-0.11.2rc1/scripts/update_conda_envs.py +0 -27
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/.git-blame-ignore-revs +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/.git_archival.txt +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/.gitattributes +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/.github/CONTRIBUTING.md +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/.github/FUNDING.yml +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/CHANGELOG.md +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/CODE_OF_CONDUCT.md +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/LICENSE +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/binder/environment.yml +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/binder/postBuild +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/favicon.ico +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/bokeh.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/dask.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/explorer.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/geo.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/geopandas.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/intake.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/interactive_hvplot.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/interactive_pandas.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/interactive_xarray.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/large_data.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/layout.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/matplotlib.png +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/networkx.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/overlay.png +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/pandas.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/plotly.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/widgets.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/home/xarray.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/images/heat_and_trees.png +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/images/portfolio.png +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/logo.png +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/logo_horizontal.svg +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/_static/logo_stacked.svg +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/assets/console.png +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/assets/console_server.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/assets/diagram.png +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/assets/diagram.svg +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/assets/hvplot-wm.png +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/assets/streamz_demo.gif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/governance/project-docs/CONTRIBUTING.md +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/governance/project-docs/GOVERNANCE.md +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/governance/project-docs/LICENSE.md +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/governance/project-docs/MEMBERS.md +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/geopandas/points.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/geopandas/polygons.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/andrewscurves.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/area.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/bar.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/barh.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/bivariate.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/box.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/errorbars.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/hexbin.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/hist.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/kde.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/labels.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/lagplot.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/line.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/ohlc.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/parallelcoordinates.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/paths.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/scatter.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/scattermatrix.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/step.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/table.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/tabular/violin.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/xarray/bar.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/xarray/contour.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/xarray/contourf.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/xarray/hist.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/xarray/image.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/xarray/kde.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/xarray/line.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/xarray/quadmesh.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/xarray/rgb.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/xarray/vectorfield.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/reference/xarray/violin.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/roadmap.md +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Explorer.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Geographic_Data.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Interactive.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/NetworkX.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Plotting_Extensions.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Statistical_Plots.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Streaming.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Subplots.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/Widgets.ipynb +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/doc/user_guide/images/simple.svg +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/backend_transforms.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/cudf.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/dask.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/data/crime.csv +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/datasets.yaml +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/duckdb.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/fugue.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/ibis.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/intake.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/interactive.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/networkx.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/pandas.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/plotting/__init__.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/polars.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/sample_data.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/streamz.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/__init__.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/data/README.md +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/data/RGB-red.byte.tif +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/plotting/__init__.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/plotting/testcore.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/plotting/testscattermatrix.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/test_links.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testbackend_transforms.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testfugue.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testgeo.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testgeowithoutgv.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testgridplots.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testibis.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testinteractive.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testnetworkx.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testoperations.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testpanel.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/teststatplots.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/teststreaming.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testtransforms.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/testutil.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/tests/util.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot/xarray.py +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot.egg-info/dependency_links.txt +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/hvplot.egg-info/top_level.txt +0 -0
- {hvplot-0.11.2rc1 → hvplot-0.11.3}/setup.cfg +0 -0
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
name: packages
|
|
2
|
+
on:
|
|
3
|
+
push:
|
|
4
|
+
tags:
|
|
5
|
+
- 'v[0-9]+.[0-9]+.[0-9]+'
|
|
6
|
+
- 'v[0-9]+.[0-9]+.[0-9]+a[0-9]+'
|
|
7
|
+
- 'v[0-9]+.[0-9]+.[0-9]+b[0-9]+'
|
|
8
|
+
- 'v[0-9]+.[0-9]+.[0-9]+rc[0-9]+'
|
|
9
|
+
# Dry-run only
|
|
10
|
+
workflow_dispatch:
|
|
11
|
+
schedule:
|
|
12
|
+
- cron: '0 15 * * SUN'
|
|
13
|
+
|
|
14
|
+
env:
|
|
15
|
+
PYTHON_VERSION: "3.11"
|
|
16
|
+
|
|
17
|
+
defaults:
|
|
18
|
+
run:
|
|
19
|
+
shell: bash -e {0}
|
|
20
|
+
|
|
21
|
+
jobs:
|
|
22
|
+
pixi_lock:
|
|
23
|
+
name: Pixi lock
|
|
24
|
+
runs-on: ubuntu-latest
|
|
25
|
+
steps:
|
|
26
|
+
- uses: holoviz-dev/holoviz_tasks/pixi_lock@v0
|
|
27
|
+
|
|
28
|
+
conda_build:
|
|
29
|
+
name: Build Conda
|
|
30
|
+
needs: [pixi_lock]
|
|
31
|
+
runs-on: "ubuntu-latest"
|
|
32
|
+
steps:
|
|
33
|
+
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0
|
|
34
|
+
with:
|
|
35
|
+
environments: "build"
|
|
36
|
+
download-data: false
|
|
37
|
+
install: false
|
|
38
|
+
- name: conda build
|
|
39
|
+
run: pixi run -e build build-conda
|
|
40
|
+
- name: Set environment variables
|
|
41
|
+
run: |
|
|
42
|
+
echo "TAG=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
|
43
|
+
echo "CONDA_FILE=$(ls dist/*.tar.bz2)" >> $GITHUB_ENV
|
|
44
|
+
- name: conda dev upload
|
|
45
|
+
if: github.event_name == 'push' && (contains(env.TAG, 'a') || contains(env.TAG, 'b') || contains(env.TAG, 'rc'))
|
|
46
|
+
run: pixi run -e build publish-conda --token ${{ secrets.CONDA_UPLOAD_TOKEN }} upload --user pyviz --label=dev $CONDA_FILE
|
|
47
|
+
- name: conda main upload
|
|
48
|
+
if: github.event_name == 'push' && (!(contains(env.TAG, 'a') || contains(env.TAG, 'b') || contains(env.TAG, 'rc')))
|
|
49
|
+
run: pixi run -e build publish-conda --token ${{ secrets.CONDA_UPLOAD_TOKEN }} upload --user pyviz --label=dev --label=main $CONDA_FILE
|
|
50
|
+
|
|
51
|
+
pip_build:
|
|
52
|
+
name: Build PyPI
|
|
53
|
+
needs: [pixi_lock]
|
|
54
|
+
runs-on: "ubuntu-latest"
|
|
55
|
+
permissions:
|
|
56
|
+
id-token: write
|
|
57
|
+
steps:
|
|
58
|
+
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0
|
|
59
|
+
with:
|
|
60
|
+
environments: "build"
|
|
61
|
+
download-data: false
|
|
62
|
+
install: false
|
|
63
|
+
- name: Build package
|
|
64
|
+
run: pixi run -e build build-pip
|
|
65
|
+
- name: Publish to PyPI
|
|
66
|
+
if: github.event_name == 'push'
|
|
67
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -20,45 +20,37 @@ on:
|
|
|
20
20
|
schedule:
|
|
21
21
|
- cron: '0 15 * * SUN'
|
|
22
22
|
|
|
23
|
+
defaults:
|
|
24
|
+
run:
|
|
25
|
+
shell: bash -e {0}
|
|
26
|
+
|
|
23
27
|
env:
|
|
24
28
|
PYTHON_VERSION: "3.11"
|
|
25
29
|
|
|
26
30
|
jobs:
|
|
27
|
-
|
|
28
|
-
name:
|
|
29
|
-
runs-on:
|
|
31
|
+
pixi_lock:
|
|
32
|
+
name: Pixi lock
|
|
33
|
+
runs-on: ubuntu-latest
|
|
34
|
+
steps:
|
|
35
|
+
- uses: holoviz-dev/holoviz_tasks/pixi_lock@v0
|
|
36
|
+
|
|
37
|
+
docs_build:
|
|
38
|
+
name: Build Documentation
|
|
39
|
+
runs-on: 'macos-latest'
|
|
30
40
|
timeout-minutes: 120
|
|
31
|
-
defaults:
|
|
32
|
-
run:
|
|
33
|
-
shell: bash -l {0}
|
|
34
41
|
env:
|
|
35
|
-
DESC: "Documentation build"
|
|
36
|
-
MPLBACKEND: "Agg"
|
|
37
|
-
MOZ_HEADLESS: 1
|
|
38
42
|
DISPLAY: ":99.0"
|
|
39
43
|
steps:
|
|
40
|
-
- uses:
|
|
41
|
-
with:
|
|
42
|
-
fetch-depth: 0
|
|
43
|
-
- uses: conda-incubator/setup-miniconda@v3
|
|
44
|
+
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0
|
|
44
45
|
with:
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
46
|
+
environments: docs
|
|
47
|
+
- name: Build documentation
|
|
48
|
+
run: pixi run -e docs docs-build
|
|
48
49
|
- name: Set and echo git ref
|
|
49
50
|
id: vars
|
|
50
51
|
run: |
|
|
51
52
|
echo "Deploying from ref ${GITHUB_REF#refs/*/}"
|
|
52
53
|
echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
|
|
53
|
-
- name: install dev
|
|
54
|
-
# To make sure the latest is installed.
|
|
55
|
-
run: pip install -e . --no-deps
|
|
56
|
-
- name: conda info
|
|
57
|
-
run: conda info
|
|
58
|
-
- name: conda list
|
|
59
|
-
run: conda list
|
|
60
|
-
- name: build docs
|
|
61
|
-
run: sphinx-build -b html doc builtdocs
|
|
62
54
|
- name: report failure
|
|
63
55
|
if: failure()
|
|
64
56
|
run: cat /tmp/sphinx-*.log | tail -n 100
|
|
@@ -84,13 +76,11 @@ jobs:
|
|
|
84
76
|
cname: hvplot.holoviz.org
|
|
85
77
|
force_orphan: true
|
|
86
78
|
exclude_assets: '.doctrees'
|
|
79
|
+
|
|
87
80
|
pip_build_docs:
|
|
88
|
-
name: Documentation
|
|
81
|
+
name: Build Documentation (pip)
|
|
89
82
|
runs-on: 'ubuntu-latest'
|
|
90
83
|
timeout-minutes: 120
|
|
91
|
-
defaults:
|
|
92
|
-
run:
|
|
93
|
-
shell: bash -l {0}
|
|
94
84
|
env:
|
|
95
85
|
DESC: "Documentation build"
|
|
96
86
|
MPLBACKEND: "Agg"
|
|
@@ -113,7 +103,7 @@ jobs:
|
|
|
113
103
|
echo "Deploying from ref ${GITHUB_REF#refs/*/}"
|
|
114
104
|
echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
|
|
115
105
|
- name: build docs
|
|
116
|
-
run: sphinx-build -b html doc builtdocs
|
|
106
|
+
run: sphinx-build -j auto -b html doc builtdocs
|
|
117
107
|
- name: report failure
|
|
118
108
|
if: failure()
|
|
119
109
|
run: cat /tmp/sphinx-*.log | tail -n 100
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
name: nightly_lock
|
|
2
|
+
on:
|
|
3
|
+
workflow_dispatch:
|
|
4
|
+
schedule:
|
|
5
|
+
- cron: "0 0 * * *"
|
|
6
|
+
|
|
7
|
+
env:
|
|
8
|
+
PACKAGE: "hvplot"
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
pixi_lock:
|
|
12
|
+
if: ${{ !github.event.repository.fork }}
|
|
13
|
+
name: Pixi lock
|
|
14
|
+
runs-on: ubuntu-latest
|
|
15
|
+
timeout-minutes: 5
|
|
16
|
+
steps:
|
|
17
|
+
- uses: holoviz-dev/holoviz_tasks/pixi_lock@v0
|
|
18
|
+
- name: Upload lock-file to S3
|
|
19
|
+
env:
|
|
20
|
+
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
|
|
21
|
+
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
|
22
|
+
AWS_DEFAULT_REGION: "eu-west-1"
|
|
23
|
+
run: |
|
|
24
|
+
zip $(date +%Y-%m-%d).zip pixi.lock pixi.toml
|
|
25
|
+
aws s3 cp ./$(date +%Y-%m-%d).zip s3://assets.holoviz.org/lock/$PACKAGE/
|
|
@@ -30,12 +30,17 @@ concurrency:
|
|
|
30
30
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
31
31
|
cancel-in-progress: true
|
|
32
32
|
|
|
33
|
+
defaults:
|
|
34
|
+
run:
|
|
35
|
+
shell: bash -e {0}
|
|
36
|
+
|
|
33
37
|
jobs:
|
|
34
38
|
pre_commit:
|
|
35
39
|
name: Run pre-commit
|
|
36
40
|
runs-on: 'ubuntu-latest'
|
|
37
41
|
steps:
|
|
38
|
-
- uses: holoviz-dev/holoviz_tasks/pre-commit@v0
|
|
42
|
+
- uses: holoviz-dev/holoviz_tasks/pre-commit@v0
|
|
43
|
+
|
|
39
44
|
setup:
|
|
40
45
|
name: Setup workflow
|
|
41
46
|
runs-on: ubuntu-latest
|
|
@@ -60,10 +65,10 @@ jobs:
|
|
|
60
65
|
run: |
|
|
61
66
|
MATRIX=$(jq -nsc '{
|
|
62
67
|
"os": ["ubuntu-latest", "macos-latest", "windows-latest"],
|
|
63
|
-
"
|
|
68
|
+
"environment": ["test-39", "test-313"],
|
|
64
69
|
"exclude": [
|
|
65
70
|
{
|
|
66
|
-
"
|
|
71
|
+
"environment": "test-39",
|
|
67
72
|
"os": "macos-latest"
|
|
68
73
|
}
|
|
69
74
|
]
|
|
@@ -74,24 +79,28 @@ jobs:
|
|
|
74
79
|
run: |
|
|
75
80
|
MATRIX=$(jq -nsc '{
|
|
76
81
|
"os": ["ubuntu-latest", "macos-latest", "windows-latest"],
|
|
77
|
-
"
|
|
82
|
+
"environment": ["test-39", "test-313"],
|
|
78
83
|
"include": [
|
|
79
84
|
{
|
|
80
|
-
"
|
|
85
|
+
"environment": "test-39",
|
|
86
|
+
"os": "ubuntu-latest"
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"environment": "test-310",
|
|
81
90
|
"os": "ubuntu-latest"
|
|
82
91
|
},
|
|
83
92
|
{
|
|
84
|
-
"
|
|
93
|
+
"environment": "test-311",
|
|
85
94
|
"os": "ubuntu-latest"
|
|
86
95
|
},
|
|
87
96
|
{
|
|
88
|
-
"
|
|
97
|
+
"environment": "test-312",
|
|
89
98
|
"os": "ubuntu-latest"
|
|
90
99
|
}
|
|
91
100
|
],
|
|
92
101
|
"exclude": [
|
|
93
102
|
{
|
|
94
|
-
"
|
|
103
|
+
"environment": "test-39",
|
|
95
104
|
"os": "macos-latest"
|
|
96
105
|
}
|
|
97
106
|
]
|
|
@@ -102,71 +111,82 @@ jobs:
|
|
|
102
111
|
run: |
|
|
103
112
|
MATRIX=$(jq -nsc '{
|
|
104
113
|
"os": ["ubuntu-latest"],
|
|
105
|
-
"
|
|
114
|
+
"environment": ["test-313"]
|
|
106
115
|
}')
|
|
107
116
|
echo "MATRIX=$MATRIX" >> $GITHUB_ENV
|
|
108
117
|
|
|
109
|
-
|
|
110
|
-
name:
|
|
111
|
-
|
|
112
|
-
|
|
118
|
+
pixi_lock:
|
|
119
|
+
name: Pixi lock
|
|
120
|
+
runs-on: ubuntu-latest
|
|
121
|
+
steps:
|
|
122
|
+
- uses: holoviz-dev/holoviz_tasks/pixi_lock@v0
|
|
123
|
+
with:
|
|
124
|
+
cache: ${{ github.event.inputs.cache == 'true' || github.event.inputs.cache == '' }}
|
|
125
|
+
|
|
126
|
+
unit_test_suite:
|
|
127
|
+
name: unit:${{ matrix.environment }}:${{ matrix.os }}
|
|
128
|
+
needs: [pre_commit, setup, pixi_lock]
|
|
113
129
|
runs-on: ${{ matrix.os }}
|
|
114
130
|
strategy:
|
|
115
131
|
fail-fast: false
|
|
116
132
|
matrix: ${{ fromJson(needs.setup.outputs.matrix) }}
|
|
117
133
|
timeout-minutes: 90
|
|
118
|
-
|
|
119
|
-
run:
|
|
120
|
-
shell: bash -el {0}
|
|
134
|
+
|
|
121
135
|
steps:
|
|
122
|
-
- uses:
|
|
136
|
+
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0
|
|
123
137
|
with:
|
|
124
|
-
|
|
125
|
-
-
|
|
138
|
+
environments: ${{ matrix.environment }}
|
|
139
|
+
- name: Test Unit
|
|
140
|
+
run: pixi run -e ${{ matrix.environment }} test-unit-cov
|
|
141
|
+
- name: Test Geo
|
|
142
|
+
run: pixi run -e ${{ matrix.environment }} test-unit-geo-cov
|
|
143
|
+
- name: Test Examples
|
|
144
|
+
run: pixi run -e ${{ matrix.environment }} test-example
|
|
145
|
+
- uses: codecov/codecov-action@v4
|
|
126
146
|
with:
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
147
|
+
token: ${{ secrets.CODECOV_TOKEN }}
|
|
148
|
+
|
|
149
|
+
core_test_suite:
|
|
150
|
+
name: core:${{ matrix.environment }}:${{ matrix.os }}
|
|
151
|
+
needs: [pre_commit, setup, pixi_lock]
|
|
152
|
+
runs-on: ${{ matrix.os }}
|
|
153
|
+
strategy:
|
|
154
|
+
fail-fast: false
|
|
155
|
+
matrix:
|
|
156
|
+
os: ["ubuntu-latest"]
|
|
157
|
+
environment: ["test-core"]
|
|
158
|
+
timeout-minutes: 120
|
|
159
|
+
steps:
|
|
160
|
+
- uses: holoviz-dev/holoviz_tasks/pixi_install@v0
|
|
161
|
+
with:
|
|
162
|
+
environments: ${{ matrix.environment }}
|
|
163
|
+
- name: Test Unit
|
|
164
|
+
run: pixi run -e ${{ matrix.environment }} test-unit
|
|
165
|
+
|
|
143
166
|
pip_test:
|
|
144
|
-
name: pip tests:${{ matrix.os }}:${{ matrix.
|
|
167
|
+
name: pip tests:${{ matrix.os }}:${{ matrix.environment }}
|
|
145
168
|
needs: [pre_commit, setup]
|
|
169
|
+
if: needs.setup.outputs.matrix_option == 'full'
|
|
146
170
|
timeout-minutes: 90
|
|
147
171
|
runs-on: ${{ matrix.os }}
|
|
148
172
|
strategy:
|
|
149
173
|
fail-fast: false
|
|
150
174
|
matrix: ${{ fromJson(needs.setup.outputs.matrix) }}
|
|
151
|
-
defaults:
|
|
152
|
-
run:
|
|
153
|
-
shell: bash -e {0}
|
|
154
175
|
steps:
|
|
155
176
|
- uses: actions/checkout@v4
|
|
156
177
|
with:
|
|
157
178
|
fetch-depth: 0
|
|
158
179
|
- uses: actions/setup-python@v5
|
|
159
180
|
with:
|
|
160
|
-
python-version:
|
|
181
|
+
python-version: '3.13'
|
|
161
182
|
- name: install with geo
|
|
162
183
|
run: python -m pip install -v --prefer-binary -e '.[tests, examples-tests, geo, hvdev, hvdev-geo, dev-extras]'
|
|
163
184
|
- name: python version and pip list
|
|
164
185
|
run: |
|
|
165
186
|
python --version --version
|
|
166
187
|
python -m pip list
|
|
167
|
-
- name:
|
|
168
|
-
|
|
169
|
-
run: bokeh sampledata
|
|
188
|
+
- name: download datasets
|
|
189
|
+
run: python scripts/download_data.py
|
|
170
190
|
- name: unit tests
|
|
171
191
|
run: pytest -v hvplot --cov=hvplot --cov-append
|
|
172
192
|
- name: unit tests geo
|
|
@@ -181,3 +201,13 @@ jobs:
|
|
|
181
201
|
verbose: false
|
|
182
202
|
env:
|
|
183
203
|
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
|
|
204
|
+
|
|
205
|
+
result_test_suite:
|
|
206
|
+
name: result:test
|
|
207
|
+
needs: [unit_test_suite, core_test_suite, pip_test]
|
|
208
|
+
if: always()
|
|
209
|
+
runs-on: ubuntu-latest
|
|
210
|
+
steps:
|
|
211
|
+
- name: check for failures
|
|
212
|
+
if: contains(needs.*.result, 'failure') || contains(needs.*.result, 'cancelled')
|
|
213
|
+
run: echo job failed && exit 1
|
|
@@ -30,12 +30,3 @@ repos:
|
|
|
30
30
|
exclude: (\.min\.js$|\.svg$|\.html$)
|
|
31
31
|
additional_dependencies:
|
|
32
32
|
- tomli
|
|
33
|
-
- repo: local
|
|
34
|
-
hooks:
|
|
35
|
-
- id: update_conda_envs
|
|
36
|
-
name: Update conda envs
|
|
37
|
-
entry: python scripts/update_conda_envs.py
|
|
38
|
-
language: python
|
|
39
|
-
additional_dependencies: [pyproject2conda]
|
|
40
|
-
files: "(pyproject.toml|update_conda_envs)"
|
|
41
|
-
pass_filenames: false
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
2
|
Name: hvplot
|
|
3
|
-
Version: 0.11.
|
|
3
|
+
Version: 0.11.3
|
|
4
4
|
Summary: A high-level plotting API for the PyData ecosystem built on HoloViews.
|
|
5
5
|
Author-email: Philipp Rudiger <developers@holoviz.org>
|
|
6
6
|
Maintainer-email: HoloViz developers <developers@holoviz.org>
|
|
@@ -14,6 +14,7 @@ Classifier: Programming Language :: Python :: 3.9
|
|
|
14
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
15
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
17
18
|
Classifier: Operating System :: OS Independent
|
|
18
19
|
Classifier: Intended Audience :: Science/Research
|
|
19
20
|
Classifier: Intended Audience :: Developers
|
|
@@ -32,7 +33,7 @@ Requires-Dist: pandas>=1.3
|
|
|
32
33
|
Requires-Dist: panel>=1.0
|
|
33
34
|
Requires-Dist: param<3.0,>=1.12.0
|
|
34
35
|
Provides-Extra: tests-core
|
|
35
|
-
Requires-Dist: dask[dataframe]; extra == "tests-core"
|
|
36
|
+
Requires-Dist: dask[dataframe]<2025.1.0; extra == "tests-core"
|
|
36
37
|
Requires-Dist: ipywidgets; extra == "tests-core"
|
|
37
38
|
Requires-Dist: matplotlib; extra == "tests-core"
|
|
38
39
|
Requires-Dist: parameterized; extra == "tests-core"
|
|
@@ -46,6 +47,8 @@ Requires-Dist: scipy; extra == "tests-core"
|
|
|
46
47
|
Requires-Dist: xarray; extra == "tests-core"
|
|
47
48
|
Requires-Dist: bokeh_sampledata; python_version >= "3.10" and extra == "tests-core"
|
|
48
49
|
Requires-Dist: psutil; extra == "tests-core"
|
|
50
|
+
Requires-Dist: cftime; extra == "tests-core"
|
|
51
|
+
Requires-Dist: numpydoc; extra == "tests-core"
|
|
49
52
|
Provides-Extra: tests
|
|
50
53
|
Requires-Dist: hvplot[tests-core]; extra == "tests"
|
|
51
54
|
Requires-Dist: fugue[sql]; extra == "tests"
|
|
@@ -72,7 +75,7 @@ Requires-Dist: spatialpandas>=0.4.3; extra == "geo"
|
|
|
72
75
|
Provides-Extra: graphviz
|
|
73
76
|
Requires-Dist: pygraphviz; extra == "graphviz"
|
|
74
77
|
Provides-Extra: examples
|
|
75
|
-
Requires-Dist: dask[dataframe]
|
|
78
|
+
Requires-Dist: dask[dataframe]<2025.1.0,>=2021.3.0; extra == "examples"
|
|
76
79
|
Requires-Dist: datashader>=0.6.5; extra == "examples"
|
|
77
80
|
Requires-Dist: duckdb; extra == "examples"
|
|
78
81
|
Requires-Dist: fugue[sql]; extra == "examples"
|
|
@@ -99,6 +102,7 @@ Requires-Dist: xarray>=0.18.2; extra == "examples"
|
|
|
99
102
|
Requires-Dist: xyzservices>=2022.9.0; extra == "examples"
|
|
100
103
|
Requires-Dist: geodatasets>=2023.12.0; extra == "examples"
|
|
101
104
|
Requires-Dist: bokeh_sampledata; python_version >= "3.10" and extra == "examples"
|
|
105
|
+
Requires-Dist: hvsampledata>=0.1.1; extra == "examples"
|
|
102
106
|
Provides-Extra: tests-nb
|
|
103
107
|
Requires-Dist: pytest-xdist; extra == "tests-nb"
|
|
104
108
|
Requires-Dist: nbval; extra == "tests-nb"
|
|
@@ -107,8 +111,10 @@ Requires-Dist: hvplot[examples]; extra == "examples-tests"
|
|
|
107
111
|
Requires-Dist: hvplot[tests-nb]; extra == "examples-tests"
|
|
108
112
|
Provides-Extra: doc
|
|
109
113
|
Requires-Dist: hvplot[examples]; extra == "doc"
|
|
110
|
-
Requires-Dist: nbsite>=0.
|
|
114
|
+
Requires-Dist: nbsite>=0.9.0a2; extra == "doc"
|
|
111
115
|
Requires-Dist: sphinxext-rediraffe; extra == "doc"
|
|
116
|
+
Requires-Dist: numpydoc; extra == "doc"
|
|
117
|
+
Requires-Dist: sphinxcontrib-mermaid; extra == "doc"
|
|
112
118
|
Provides-Extra: hvdev
|
|
113
119
|
Requires-Dist: colorcet>=0.0.1a1; extra == "hvdev"
|
|
114
120
|
Requires-Dist: datashader>=0.0.1a1; extra == "hvdev"
|
|
@@ -120,6 +126,7 @@ Provides-Extra: hvdev-geo
|
|
|
120
126
|
Requires-Dist: geoviews>=0.0.1a1; extra == "hvdev-geo"
|
|
121
127
|
Provides-Extra: dev-extras
|
|
122
128
|
Requires-Dist: setuptools_scm>=6; extra == "dev-extras"
|
|
129
|
+
Dynamic: license-file
|
|
123
130
|
|
|
124
131
|
# hvPlot makes data analysis and visualization simple <img src="https://github.com/holoviz/hvplot/blob/main/doc/_static/logo.png?raw=true" style="width:2em;margin-bottom:-15px">
|
|
125
132
|
|
|
@@ -135,7 +142,7 @@ Requires-Dist: setuptools_scm>=6; extra == "dev-extras"
|
|
|
135
142
|
| Binder | [](https://mybinder.org/v2/gh/holoviz/hvplot/v0.8.1?urlpath=lab/tree) |
|
|
136
143
|
| Support | [](https://discourse.holoviz.org/c/hvplot/8) |
|
|
137
144
|
|
|
138
|
-
[Home](https://hvplot.holoviz.org/) | [Installation instructions](#installation-instructions) | [Getting Started Guide](https://hvplot.holoviz.org/getting_started
|
|
145
|
+
[Home](https://hvplot.holoviz.org/) | [Installation instructions](#installation-instructions) | [Getting Started Guide](https://hvplot.holoviz.org/tutorials/getting_started.html) | [Reference Guides](https://hvplot.holoviz.org/reference/index.html) | [Examples](#examples) | [License](#license) | [Support](#support--feedback)
|
|
139
146
|
|
|
140
147
|
## hvPlot provides a familiar, high-level API for visualization
|
|
141
148
|
|
|
@@ -163,7 +170,7 @@ Check out [this blog post](https://towardsdatascience.com/the-easiest-way-to-cre
|
|
|
163
170
|
|
|
164
171
|
## Mini getting-started
|
|
165
172
|
|
|
166
|
-
Head over to the [getting started guide](https://hvplot.holoviz.org/getting_started
|
|
173
|
+
Head over to the [getting started guide](https://hvplot.holoviz.org/tutorials/getting_started.html) for more!
|
|
167
174
|
|
|
168
175
|
### Install
|
|
169
176
|
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
| Binder | [](https://mybinder.org/v2/gh/holoviz/hvplot/v0.8.1?urlpath=lab/tree) |
|
|
13
13
|
| Support | [](https://discourse.holoviz.org/c/hvplot/8) |
|
|
14
14
|
|
|
15
|
-
[Home](https://hvplot.holoviz.org/) | [Installation instructions](#installation-instructions) | [Getting Started Guide](https://hvplot.holoviz.org/getting_started
|
|
15
|
+
[Home](https://hvplot.holoviz.org/) | [Installation instructions](#installation-instructions) | [Getting Started Guide](https://hvplot.holoviz.org/tutorials/getting_started.html) | [Reference Guides](https://hvplot.holoviz.org/reference/index.html) | [Examples](#examples) | [License](#license) | [Support](#support--feedback)
|
|
16
16
|
|
|
17
17
|
## hvPlot provides a familiar, high-level API for visualization
|
|
18
18
|
|
|
@@ -40,7 +40,7 @@ Check out [this blog post](https://towardsdatascience.com/the-easiest-way-to-cre
|
|
|
40
40
|
|
|
41
41
|
## Mini getting-started
|
|
42
42
|
|
|
43
|
-
Head over to the [getting started guide](https://hvplot.holoviz.org/getting_started
|
|
43
|
+
Head over to the [getting started guide](https://hvplot.holoviz.org/tutorials/getting_started.html) for more!
|
|
44
44
|
|
|
45
45
|
### Install
|
|
46
46
|
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
from docutils import nodes
|
|
2
|
+
from docutils.statemachine import StringList
|
|
3
|
+
from sphinx.util.docutils import SphinxDirective
|
|
4
|
+
|
|
5
|
+
import holoviews as hv
|
|
6
|
+
|
|
7
|
+
from hvplot.util import _get_backend_style_options
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
hv.extension('bokeh', 'matplotlib')
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
class BackendStylingOptionsDirective(SphinxDirective):
|
|
14
|
+
"""
|
|
15
|
+
Display the Bokeh and Matplotlib styling options for a plot method
|
|
16
|
+
in a tabs layout.
|
|
17
|
+
|
|
18
|
+
.. backend-styling-options:: scatter
|
|
19
|
+
"""
|
|
20
|
+
|
|
21
|
+
has_content = False
|
|
22
|
+
required_arguments = 1
|
|
23
|
+
optional_arguments = 0
|
|
24
|
+
final_argument_whitespace = True
|
|
25
|
+
|
|
26
|
+
def run(self):
|
|
27
|
+
input_string = self.arguments[0]
|
|
28
|
+
|
|
29
|
+
bk_opts = _get_backend_style_options(input_string, 'bokeh')
|
|
30
|
+
mpl_opts = _get_backend_style_options(input_string, 'matplotlib')
|
|
31
|
+
bk_opts_info = ', '.join(bk_opts)
|
|
32
|
+
mpl_opts_info = ', '.join(mpl_opts)
|
|
33
|
+
# Sphinx-design syntax
|
|
34
|
+
tab_content = f"""
|
|
35
|
+
.. tab-set::
|
|
36
|
+
|
|
37
|
+
.. tab-item:: Bokeh
|
|
38
|
+
|
|
39
|
+
{bk_opts_info}
|
|
40
|
+
|
|
41
|
+
.. tab-item:: Matplotlib
|
|
42
|
+
|
|
43
|
+
{mpl_opts_info}
|
|
44
|
+
"""
|
|
45
|
+
|
|
46
|
+
container = nodes.container()
|
|
47
|
+
container['classes'] = ['backend-styling-options-container']
|
|
48
|
+
content_list = StringList(tab_content.splitlines(), source='')
|
|
49
|
+
self.state.nested_parse(content_list, 0, container)
|
|
50
|
+
return container.children
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
def setup(app):
|
|
54
|
+
app.add_directive('backend-styling-options', BackendStylingOptionsDirective)
|
|
55
|
+
|
|
56
|
+
return {
|
|
57
|
+
'version': '0.1',
|
|
58
|
+
'parallel_read_safe': True,
|
|
59
|
+
'parallel_write_safe': True,
|
|
60
|
+
}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
"""
|
|
2
|
+
Sphinx extension to display a table with the options of a specific
|
|
3
|
+
options group of the converter. Requires numpydoc
|
|
4
|
+
|
|
5
|
+
Usage:
|
|
6
|
+
|
|
7
|
+
.. plotting-options-table:: Style Options
|
|
8
|
+
"""
|
|
9
|
+
|
|
10
|
+
import sys
|
|
11
|
+
|
|
12
|
+
from textwrap import indent
|
|
13
|
+
|
|
14
|
+
from hvplot.util import _get_docstring_group_parameters
|
|
15
|
+
from sphinx.util.docutils import SphinxDirective
|
|
16
|
+
|
|
17
|
+
|
|
18
|
+
class PlottingOptionsTableDirective(SphinxDirective):
|
|
19
|
+
"""
|
|
20
|
+
Directive to display a plotting option group in a Markdown table.
|
|
21
|
+
|
|
22
|
+
.. plotting-options-table:: Data Options
|
|
23
|
+
"""
|
|
24
|
+
|
|
25
|
+
required_arguments = 1
|
|
26
|
+
final_argument_whitespace = True
|
|
27
|
+
|
|
28
|
+
def run(self):
|
|
29
|
+
# Get the key passed to the directive
|
|
30
|
+
options_group = self.arguments[0]
|
|
31
|
+
parameters = _get_docstring_group_parameters(options_group)
|
|
32
|
+
table_rst = ['.. list-table::', ' :header-rows: 1', ' :widths: 25 70', '']
|
|
33
|
+
table_rst.append(' * - ')
|
|
34
|
+
table_rst.append(' Parameters')
|
|
35
|
+
table_rst.append(' - ')
|
|
36
|
+
table_rst.append(' Description')
|
|
37
|
+
|
|
38
|
+
for param in parameters:
|
|
39
|
+
desc = '\n'.join(param.desc)
|
|
40
|
+
table_rst.append(' * - ')
|
|
41
|
+
table_rst.append(f' **{param.name}** *({param.type})*')
|
|
42
|
+
table_rst.append(' - ')
|
|
43
|
+
table_rst.append(indent(desc, ' ' * 7))
|
|
44
|
+
|
|
45
|
+
raw_rst = '\n'.join(table_rst)
|
|
46
|
+
|
|
47
|
+
parsed = self.parse_text_to_nodes(raw_rst)
|
|
48
|
+
return parsed
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
def setup(app):
|
|
52
|
+
app.add_directive('plotting-options-table', PlottingOptionsTableDirective)
|
|
53
|
+
|
|
54
|
+
return {
|
|
55
|
+
'version': '0.1',
|
|
56
|
+
'parallel_read_safe': True,
|
|
57
|
+
'parallel_write_safe': True,
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
|
|
61
|
+
if __name__ == '__main__':
|
|
62
|
+
group = ' '.join(sys.argv[1:])
|
|
63
|
+
opts = _get_docstring_group_parameters(group)
|
|
64
|
+
print(opts)
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
{# Added because of https://github.com/pydata/pydata-sphinx-theme/issues/2088 #}
|
|
2
|
+
{# Displays a link to the .rst source of the current page. #}
|
|
3
|
+
{% if show_source and has_source and sourcename %}
|
|
4
|
+
<div class="tocsection sourcelink">
|
|
5
|
+
<a href="{{ pathto('_sources/' + sourcename, true)|e }}">
|
|
6
|
+
<i class="fa-solid fa-file-lines"></i> {{ _("Show Source") }}
|
|
7
|
+
</a>
|
|
8
|
+
</div>
|
|
9
|
+
{% endif %}
|