hvplot 0.10.0rc2__tar.gz → 0.11.0__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.10.0rc2 → hvplot-0.11.0}/.github/workflows/build.yaml +1 -3
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/.github/workflows/docs.yaml +1 -5
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/.github/workflows/test.yaml +9 -14
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/PKG-INFO +18 -12
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/README.md +4 -4
- hvplot-0.11.0/doc/_static/home/geopandas.gif +0 -0
- hvplot-0.11.0/doc/assets/diagram.png +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/assets/diagram.svg +367 -807
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/conf.py +10 -2
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/conftest.py +21 -1
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/developer_guide/index.md +1 -1
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/getting_started/installation.md +2 -2
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/index.md +22 -3
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/geopandas/points.ipynb +13 -3
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/geopandas/polygons.ipynb +10 -5
- hvplot-0.11.0/doc/reference/tabular/paths.ipynb +80 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/xarray/image.ipynb +16 -0
- hvplot-0.11.0/doc/reference/xarray/vectorfield.ipynb +230 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/releases.md +62 -1
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Customization.ipynb +53 -6
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Geographic_Data.ipynb +16 -14
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Integrations.ipynb +108 -9
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Introduction.ipynb +1 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Large_Timeseries.ipynb +23 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/NetworkX.ipynb +1 -1
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Plotting.ipynb +20 -1
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Plotting_with_Matplotlib.ipynb +62 -2
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Plotting_with_Plotly.ipynb +23 -2
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Timeseries_Data.ipynb +27 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/envs/py3.10-tests.yaml +9 -5
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/envs/py3.11-docs.yaml +7 -7
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/envs/py3.11-tests.yaml +9 -5
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/envs/py3.12-tests.yaml +9 -5
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/envs/py3.9-tests.yaml +8 -5
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/__init__.py +28 -2
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/_version.py +2 -2
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/converter.py +242 -138
- hvplot-0.11.0/hvplot/cudf.py +30 -0
- hvplot-0.11.0/hvplot/dask.py +46 -0
- hvplot-0.11.0/hvplot/duckdb.py +27 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/fugue.py +10 -6
- hvplot-0.11.0/hvplot/ibis.py +25 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/intake.py +9 -5
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/interactive.py +1 -64
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/networkx.py +1 -2
- hvplot-0.11.0/hvplot/pandas.py +33 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/plotting/__init__.py +6 -1
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/plotting/core.py +96 -8
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/plotting/scatter_matrix.py +0 -9
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/polars.py +6 -4
- hvplot-0.11.0/hvplot/streamz.py +24 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/conftest.py +1 -3
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/plotting/testcore.py +0 -13
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testcharts.py +189 -33
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testgeo.py +14 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testgeowithoutgv.py +8 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testgridplots.py +7 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testinteractive.py +1 -92
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testoperations.py +13 -11
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testoptions.py +23 -2
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testpanel.py +4 -15
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testpatch.py +28 -6
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testplotting.py +18 -14
- hvplot-0.11.0/hvplot/tests/teststatplots.py +24 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testui.py +27 -1
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testutil.py +27 -24
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/ui.py +55 -33
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/util.py +44 -8
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/utilities.py +1 -1
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/xarray.py +7 -5
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot.egg-info/PKG-INFO +18 -12
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot.egg-info/SOURCES.txt +3 -1
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot.egg-info/requires.txt +16 -5
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/pyproject.toml +21 -9
- hvplot-0.10.0rc2/doc/_static/home/geopandas.gif +0 -0
- hvplot-0.10.0rc2/doc/assets/diagram.png +0 -0
- hvplot-0.10.0rc2/doc/reference/xarray/vectorfield.ipynb +0 -126
- hvplot-0.10.0rc2/envs/py3.8-tests.yaml +0 -76
- hvplot-0.10.0rc2/hvplot/cudf.py +0 -26
- hvplot-0.10.0rc2/hvplot/dask.py +0 -42
- hvplot-0.10.0rc2/hvplot/ibis.py +0 -21
- hvplot-0.10.0rc2/hvplot/pandas.py +0 -30
- hvplot-0.10.0rc2/hvplot/streamz.py +0 -21
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/.git-blame-ignore-revs +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/.git_archival.txt +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/.gitattributes +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/.github/CONTRIBUTING.md +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/.github/FUNDING.yml +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/.gitignore +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/.pre-commit-config.yaml +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/CHANGELOG.md +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/CODE_OF_CONDUCT.md +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/LICENSE +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/binder/environment.yml +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/binder/postBuild +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/conda.recipe/meta.yaml +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/custom.css +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/favicon.ico +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/bokeh.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/dask.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/explorer.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/geo.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/intake.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/interactive_hvplot.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/interactive_pandas.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/interactive_xarray.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/large_data.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/layout.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/matplotlib.png +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/networkx.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/overlay.png +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/pandas.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/plotly.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/widgets.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/home/xarray.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/images/heat_and_trees.png +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/images/portfolio.png +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/logo.png +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/logo_horizontal.svg +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/_static/logo_stacked.svg +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/about.md +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/assets/console.png +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/assets/console_server.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/assets/hvplot-wm.png +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/assets/streamz_demo.gif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/getting_started/explorer.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/getting_started/hvplot.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/getting_started/index.md +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/getting_started/interactive.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/governance/project-docs/CONTRIBUTING.md +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/governance/project-docs/GOVERNANCE.md +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/governance/project-docs/LICENSE.md +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/governance/project-docs/MEMBERS.md +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/andrewscurves.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/area.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/bar.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/barh.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/bivariate.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/box.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/errorbars.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/heatmap.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/hexbin.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/hist.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/kde.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/labels.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/lagplot.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/line.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/ohlc.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/parallelcoordinates.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/scatter.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/scattermatrix.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/step.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/table.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/tabular/violin.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/xarray/bar.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/xarray/contour.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/xarray/contourf.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/xarray/hist.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/xarray/kde.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/xarray/line.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/xarray/quadmesh.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/xarray/rgb.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/reference/xarray/violin.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/roadmap.md +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/topics.md +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Explorer.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Gridded_Data.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Interactive.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Pandas_API.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Plotting_Extensions.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Statistical_Plots.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Streaming.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Subplots.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Viewing.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/Widgets.ipynb +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/images/simple.svg +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/doc/user_guide/index.md +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/backend_transforms.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/data/crime.csv +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/datasets.yaml +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/plotting/andrews_curves.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/plotting/lag_plot.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/plotting/parallel_coordinates.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/sample_data.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/__init__.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/data/README.md +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/data/RGB-red.byte.tif +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/plotting/__init__.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/plotting/testohlc.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/plotting/testscattermatrix.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/test_links.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testbackend_transforms.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testfugue.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testhelp.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testibis.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testnetworkx.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testoverrides.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/teststreaming.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/testtransforms.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot/tests/util.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot.egg-info/dependency_links.txt +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot.egg-info/entry_points.txt +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/hvplot.egg-info/top_level.txt +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/scripts/update_conda_envs.py +0 -0
- {hvplot-0.10.0rc2 → hvplot-0.11.0}/setup.cfg +0 -0
|
@@ -62,9 +62,7 @@ jobs:
|
|
|
62
62
|
with:
|
|
63
63
|
python-version: ${{ env.PYTHON_VERSION }}
|
|
64
64
|
- name: env setup
|
|
65
|
-
run:
|
|
66
|
-
python -m pip install --upgrade pip setuptools
|
|
67
|
-
python -m pip install build
|
|
65
|
+
run: python -m pip install build
|
|
68
66
|
- name: pip build
|
|
69
67
|
run: python -m build
|
|
70
68
|
- name: Publish package to PyPI
|
|
@@ -50,8 +50,6 @@ jobs:
|
|
|
50
50
|
run: |
|
|
51
51
|
echo "Deploying from ref ${GITHUB_REF#refs/*/}"
|
|
52
52
|
echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
|
|
53
|
-
- name: bokeh sampledata
|
|
54
|
-
run: bokeh sampledata
|
|
55
53
|
- name: install dev nbsite
|
|
56
54
|
run: pip install --pre -U nbsite
|
|
57
55
|
- name: conda info
|
|
@@ -105,7 +103,7 @@ jobs:
|
|
|
105
103
|
with:
|
|
106
104
|
python-version: ${{ env.PYTHON_VERSION }}
|
|
107
105
|
- name: install
|
|
108
|
-
run: pip install ."[doc, examples, geo]"
|
|
106
|
+
run: pip install -v --prefer-binary -e ."[doc, examples, geo]"
|
|
109
107
|
- name: install dev nbsite
|
|
110
108
|
run: pip install --pre -U nbsite
|
|
111
109
|
- name: pip list
|
|
@@ -115,8 +113,6 @@ jobs:
|
|
|
115
113
|
run: |
|
|
116
114
|
echo "Deploying from ref ${GITHUB_REF#refs/*/}"
|
|
117
115
|
echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
|
|
118
|
-
- name: bokeh sampledata
|
|
119
|
-
run: bokeh sampledata
|
|
120
116
|
- name: build docs
|
|
121
117
|
run: sphinx-build -b html doc builtdocs
|
|
122
118
|
- name: report failure
|
|
@@ -60,10 +60,10 @@ jobs:
|
|
|
60
60
|
run: |
|
|
61
61
|
MATRIX=$(jq -nsc '{
|
|
62
62
|
"os": ["ubuntu-latest", "macos-latest", "windows-latest"],
|
|
63
|
-
"python-version": ["3.
|
|
63
|
+
"python-version": ["3.9", "3.12"],
|
|
64
64
|
"exclude": [
|
|
65
65
|
{
|
|
66
|
-
"python-version": "3.
|
|
66
|
+
"python-version": "3.9",
|
|
67
67
|
"os": "macos-latest"
|
|
68
68
|
}
|
|
69
69
|
]
|
|
@@ -74,7 +74,7 @@ jobs:
|
|
|
74
74
|
run: |
|
|
75
75
|
MATRIX=$(jq -nsc '{
|
|
76
76
|
"os": ["ubuntu-latest", "macos-latest", "windows-latest"],
|
|
77
|
-
"python-version": ["3.
|
|
77
|
+
"python-version": ["3.9", "3.12"],
|
|
78
78
|
"include": [
|
|
79
79
|
{
|
|
80
80
|
"python-version": "3.9",
|
|
@@ -91,7 +91,7 @@ jobs:
|
|
|
91
91
|
],
|
|
92
92
|
"exclude": [
|
|
93
93
|
{
|
|
94
|
-
"python-version": "3.
|
|
94
|
+
"python-version": "3.9",
|
|
95
95
|
"os": "macos-latest"
|
|
96
96
|
}
|
|
97
97
|
]
|
|
@@ -132,13 +132,14 @@ jobs:
|
|
|
132
132
|
- name: conda list
|
|
133
133
|
run: conda list
|
|
134
134
|
- name: bokeh sampledata
|
|
135
|
+
if: ${{ matrix.python-version == '3.9'}}
|
|
135
136
|
run: bokeh sampledata
|
|
136
137
|
- name: unit tests
|
|
137
138
|
run: pytest -v hvplot --cov=hvplot --cov-append
|
|
138
139
|
- name: unit tests geo
|
|
139
140
|
run: pytest -v hvplot --geo --cov=hvplot --cov-append
|
|
140
141
|
- name: examples tests
|
|
141
|
-
run: pytest -n
|
|
142
|
+
run: pytest -n logical --dist loadscope --nbval-lax -p no:python
|
|
142
143
|
pip_test:
|
|
143
144
|
name: pip tests:${{ matrix.os }}:${{ matrix.python-version }}
|
|
144
145
|
needs: [pre_commit, setup]
|
|
@@ -157,25 +158,19 @@ jobs:
|
|
|
157
158
|
- uses: actions/setup-python@v5
|
|
158
159
|
with:
|
|
159
160
|
python-version: ${{ matrix.python-version }}
|
|
160
|
-
- name: upgrade pip / setuptools
|
|
161
|
-
run: pip install -U pip setuptools
|
|
162
|
-
- name: install without geo
|
|
163
|
-
# Because cartopy cannot be installed on Python 3.8 on these platforms
|
|
164
|
-
if: matrix.python-version == '3.8' && contains(fromJSON('["ubuntu-latest", "windows-latest"]'), matrix.os)
|
|
165
|
-
run: pip install -ve '.[tests, examples-tests, hvdev, dev-extras]'
|
|
166
161
|
- name: install with geo
|
|
167
|
-
|
|
168
|
-
run: pip install -ve '.[tests, examples-tests, geo, hvdev, hvdev-geo, dev-extras]'
|
|
162
|
+
run: pip install -v --prefer-binary -e '.[tests, examples-tests, geo, hvdev, hvdev-geo, dev-extras]'
|
|
169
163
|
- name: pip list
|
|
170
164
|
run: pip list
|
|
171
165
|
- name: bokeh sampledata
|
|
166
|
+
if: ${{ matrix.python-version == '3.9'}}
|
|
172
167
|
run: bokeh sampledata
|
|
173
168
|
- name: unit tests
|
|
174
169
|
run: pytest -v hvplot --cov=hvplot --cov-append
|
|
175
170
|
- name: unit tests geo
|
|
176
171
|
run: pytest -v hvplot --geo --cov=hvplot --cov-append
|
|
177
172
|
- name: examples tests
|
|
178
|
-
run: pytest -n
|
|
173
|
+
run: pytest -n logical --dist loadscope --nbval-lax -p no:python
|
|
179
174
|
- name: Upload coverage reports to Codecov
|
|
180
175
|
if: github.event_name == 'push' || github.event_name == 'pull_request'
|
|
181
176
|
uses: codecov/codecov-action@v4
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: hvplot
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.11.0
|
|
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>
|
|
@@ -10,7 +10,6 @@ Project-URL: Source, http://github.com/holoviz/hvplot
|
|
|
10
10
|
Project-URL: HoloViz, https://holoviz.org/
|
|
11
11
|
Classifier: License :: OSI Approved :: BSD License
|
|
12
12
|
Classifier: Development Status :: 5 - Production/Stable
|
|
13
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
14
13
|
Classifier: Programming Language :: Python :: 3.9
|
|
15
14
|
Classifier: Programming Language :: Python :: 3.10
|
|
16
15
|
Classifier: Programming Language :: Python :: 3.11
|
|
@@ -21,16 +20,16 @@ Classifier: Intended Audience :: Developers
|
|
|
21
20
|
Classifier: Natural Language :: English
|
|
22
21
|
Classifier: Topic :: Scientific/Engineering
|
|
23
22
|
Classifier: Topic :: Software Development :: Libraries
|
|
24
|
-
Requires-Python: >=3.
|
|
23
|
+
Requires-Python: >=3.9
|
|
25
24
|
Description-Content-Type: text/markdown
|
|
26
25
|
License-File: LICENSE
|
|
27
|
-
Requires-Dist: bokeh>=1
|
|
26
|
+
Requires-Dist: bokeh>=3.1
|
|
28
27
|
Requires-Dist: colorcet>=2
|
|
29
|
-
Requires-Dist: holoviews>=1.
|
|
30
|
-
Requires-Dist: numpy>=1.
|
|
28
|
+
Requires-Dist: holoviews>=1.19.0
|
|
29
|
+
Requires-Dist: numpy>=1.21
|
|
31
30
|
Requires-Dist: packaging
|
|
32
|
-
Requires-Dist: pandas
|
|
33
|
-
Requires-Dist: panel>=
|
|
31
|
+
Requires-Dist: pandas>=1.3
|
|
32
|
+
Requires-Dist: panel>=1.0
|
|
34
33
|
Requires-Dist: param<3.0,>=1.12.0
|
|
35
34
|
Provides-Extra: tests-core
|
|
36
35
|
Requires-Dist: dask[dataframe]; extra == "tests-core"
|
|
@@ -45,12 +44,17 @@ Requires-Dist: pytest; extra == "tests-core"
|
|
|
45
44
|
Requires-Dist: ruff; extra == "tests-core"
|
|
46
45
|
Requires-Dist: scipy; extra == "tests-core"
|
|
47
46
|
Requires-Dist: xarray; extra == "tests-core"
|
|
47
|
+
Requires-Dist: bokeh_sampledata; python_version >= "3.10" and extra == "tests-core"
|
|
48
|
+
Requires-Dist: psutil; extra == "tests-core"
|
|
48
49
|
Provides-Extra: tests
|
|
49
50
|
Requires-Dist: hvplot[tests-core]; extra == "tests"
|
|
50
51
|
Requires-Dist: fugue[sql]; extra == "tests"
|
|
51
52
|
Requires-Dist: hvplot[fugue-sql]; extra == "tests"
|
|
52
53
|
Requires-Dist: ibis-framework[duckdb]; extra == "tests"
|
|
53
54
|
Requires-Dist: polars; extra == "tests"
|
|
55
|
+
Requires-Dist: dask; extra == "tests"
|
|
56
|
+
Requires-Dist: spatialpandas; extra == "tests"
|
|
57
|
+
Requires-Dist: duckdb; extra == "tests"
|
|
54
58
|
Provides-Extra: fugue-sql
|
|
55
59
|
Requires-Dist: qpd>=0.4.4; extra == "fugue-sql"
|
|
56
60
|
Requires-Dist: fugue-sql-antlr>=0.2.0; extra == "fugue-sql"
|
|
@@ -70,6 +74,7 @@ Requires-Dist: pygraphviz; extra == "graphviz"
|
|
|
70
74
|
Provides-Extra: examples
|
|
71
75
|
Requires-Dist: dask[dataframe]>=2021.3.0; extra == "examples"
|
|
72
76
|
Requires-Dist: datashader>=0.6.5; extra == "examples"
|
|
77
|
+
Requires-Dist: duckdb; extra == "examples"
|
|
73
78
|
Requires-Dist: fugue[sql]; extra == "examples"
|
|
74
79
|
Requires-Dist: hvplot[fugue-sql]; extra == "examples"
|
|
75
80
|
Requires-Dist: ibis-framework[duckdb]; extra == "examples"
|
|
@@ -93,6 +98,7 @@ Requires-Dist: streamz>=0.3.0; extra == "examples"
|
|
|
93
98
|
Requires-Dist: xarray>=0.18.2; extra == "examples"
|
|
94
99
|
Requires-Dist: xyzservices>=2022.9.0; extra == "examples"
|
|
95
100
|
Requires-Dist: geodatasets>=2023.12.0; extra == "examples"
|
|
101
|
+
Requires-Dist: bokeh_sampledata; python_version >= "3.10" and extra == "examples"
|
|
96
102
|
Provides-Extra: tests-nb
|
|
97
103
|
Requires-Dist: pytest-xdist; extra == "tests-nb"
|
|
98
104
|
Requires-Dist: nbval; extra == "tests-nb"
|
|
@@ -135,7 +141,7 @@ Requires-Dist: setuptools_scm>=6; extra == "dev-extras"
|
|
|
135
141
|
|
|
136
142
|
The API is based on the familiar Pandas `.plot` API and the innovative `.interactive` API.
|
|
137
143
|
|
|
138
|
-
<img src="https://github.com/MarcSkovMadsen/awesome-panel-assets/blob/master/images/hvPlot/hvplot-total-intro.gif?raw=true" style="max-height:600px;border-radius:2%;">
|
|
144
|
+
<img src="https://github.com/MarcSkovMadsen/old-awesome-panel-assets/blob/master/images/hvPlot/hvplot-total-intro.gif?raw=true" style="max-height:600px;border-radius:2%;">
|
|
139
145
|
|
|
140
146
|
## hvPlot works with the tools you know and love
|
|
141
147
|
|
|
@@ -145,7 +151,7 @@ hvPlot
|
|
|
145
151
|
- supports the plotting backends [Bokeh](https://docs.bokeh.org/en/latest/), [Matplotlib](https://matplotlib.org/) and [Plotly](https://plotly.com/python/).
|
|
146
152
|
- exposes the powerful tools from the [HoloViz](https://holoviz.org/) ecosystem in a familiar and convenient API.
|
|
147
153
|
|
|
148
|
-
[<img src="https://hvplot.holoviz.org/
|
|
154
|
+
[<img src="https://hvplot.holoviz.org/_images/diagram.svg" style="max-height:400px;border-radius:2%;"/>](https://holoviz.org/)
|
|
149
155
|
|
|
150
156
|
hvPlot is **the simplest way to benefit from the [HoloViz](https://holoviz.org/) ecosystem for data exploration**.
|
|
151
157
|
|
|
@@ -204,7 +210,7 @@ Use the `.hvplot` API as you would use the Pandas or Xarray `.plot` API:
|
|
|
204
210
|
df.hvplot()
|
|
205
211
|
```
|
|
206
212
|
|
|
207
|
-
[<img src="https://github.com/MarcSkovMadsen/awesome-panel-assets/blob/master/images/hvPlot/hvplot-intro-plot.gif?raw=true" style="max-height:300px;border-radius:2%;">](https://hvplot.holoviz.org/user_guide/index.html)
|
|
213
|
+
[<img src="https://github.com/MarcSkovMadsen/old-awesome-panel-assets/blob/master/images/hvPlot/hvplot-intro-plot.gif?raw=true" style="max-height:300px;border-radius:2%;">](https://hvplot.holoviz.org/user_guide/index.html)
|
|
208
214
|
|
|
209
215
|
|
|
210
216
|
### Interactive data apps
|
|
@@ -218,7 +224,7 @@ pn.extension()
|
|
|
218
224
|
df.interactive(width=600).head(n=pn.widgets.IntSlider(start=1, end=5, value=3))
|
|
219
225
|
```
|
|
220
226
|
|
|
221
|
-
[<img src="https://github.com/MarcSkovMadsen/awesome-panel-assets/blob/master/images/hvPlot/hvplot-intro-interactive.gif?raw=true" style="max-height:300px;border-radius:2%;">](https://hvplot.holoviz.org/user_guide/Interactive.html)
|
|
227
|
+
[<img src="https://github.com/MarcSkovMadsen/old-awesome-panel-assets/blob/master/images/hvPlot/hvplot-intro-interactive.gif?raw=true" style="max-height:300px;border-radius:2%;">](https://hvplot.holoviz.org/user_guide/Interactive.html)
|
|
222
228
|
|
|
223
229
|
### How to find documentation from your notebook or editor
|
|
224
230
|
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
|
|
19
19
|
The API is based on the familiar Pandas `.plot` API and the innovative `.interactive` API.
|
|
20
20
|
|
|
21
|
-
<img src="https://github.com/MarcSkovMadsen/awesome-panel-assets/blob/master/images/hvPlot/hvplot-total-intro.gif?raw=true" style="max-height:600px;border-radius:2%;">
|
|
21
|
+
<img src="https://github.com/MarcSkovMadsen/old-awesome-panel-assets/blob/master/images/hvPlot/hvplot-total-intro.gif?raw=true" style="max-height:600px;border-radius:2%;">
|
|
22
22
|
|
|
23
23
|
## hvPlot works with the tools you know and love
|
|
24
24
|
|
|
@@ -28,7 +28,7 @@ hvPlot
|
|
|
28
28
|
- supports the plotting backends [Bokeh](https://docs.bokeh.org/en/latest/), [Matplotlib](https://matplotlib.org/) and [Plotly](https://plotly.com/python/).
|
|
29
29
|
- exposes the powerful tools from the [HoloViz](https://holoviz.org/) ecosystem in a familiar and convenient API.
|
|
30
30
|
|
|
31
|
-
[<img src="https://hvplot.holoviz.org/
|
|
31
|
+
[<img src="https://hvplot.holoviz.org/_images/diagram.svg" style="max-height:400px;border-radius:2%;"/>](https://holoviz.org/)
|
|
32
32
|
|
|
33
33
|
hvPlot is **the simplest way to benefit from the [HoloViz](https://holoviz.org/) ecosystem for data exploration**.
|
|
34
34
|
|
|
@@ -87,7 +87,7 @@ Use the `.hvplot` API as you would use the Pandas or Xarray `.plot` API:
|
|
|
87
87
|
df.hvplot()
|
|
88
88
|
```
|
|
89
89
|
|
|
90
|
-
[<img src="https://github.com/MarcSkovMadsen/awesome-panel-assets/blob/master/images/hvPlot/hvplot-intro-plot.gif?raw=true" style="max-height:300px;border-radius:2%;">](https://hvplot.holoviz.org/user_guide/index.html)
|
|
90
|
+
[<img src="https://github.com/MarcSkovMadsen/old-awesome-panel-assets/blob/master/images/hvPlot/hvplot-intro-plot.gif?raw=true" style="max-height:300px;border-radius:2%;">](https://hvplot.holoviz.org/user_guide/index.html)
|
|
91
91
|
|
|
92
92
|
|
|
93
93
|
### Interactive data apps
|
|
@@ -101,7 +101,7 @@ pn.extension()
|
|
|
101
101
|
df.interactive(width=600).head(n=pn.widgets.IntSlider(start=1, end=5, value=3))
|
|
102
102
|
```
|
|
103
103
|
|
|
104
|
-
[<img src="https://github.com/MarcSkovMadsen/awesome-panel-assets/blob/master/images/hvPlot/hvplot-intro-interactive.gif?raw=true" style="max-height:300px;border-radius:2%;">](https://hvplot.holoviz.org/user_guide/Interactive.html)
|
|
104
|
+
[<img src="https://github.com/MarcSkovMadsen/old-awesome-panel-assets/blob/master/images/hvPlot/hvplot-intro-interactive.gif?raw=true" style="max-height:300px;border-radius:2%;">](https://hvplot.holoviz.org/user_guide/Interactive.html)
|
|
105
105
|
|
|
106
106
|
### How to find documentation from your notebook or editor
|
|
107
107
|
|
|
Binary file
|
|
Binary file
|