hvplot 0.10.0rc2__tar.gz → 0.11.0a1__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.
Files changed (197) hide show
  1. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/.github/workflows/build.yaml +1 -3
  2. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/.github/workflows/docs.yaml +1 -1
  3. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/.github/workflows/test.yaml +5 -12
  4. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/PKG-INFO +7 -8
  5. hvplot-0.11.0a1/doc/_static/home/geopandas.gif +0 -0
  6. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/developer_guide/index.md +1 -1
  7. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/getting_started/installation.md +1 -1
  8. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/index.md +3 -3
  9. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/geopandas/points.ipynb +13 -3
  10. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/geopandas/polygons.ipynb +10 -5
  11. hvplot-0.11.0a1/doc/reference/pandas/paths.ipynb +80 -0
  12. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/xarray/image.ipynb +16 -0
  13. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Customization.ipynb +29 -2
  14. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Large_Timeseries.ipynb +23 -0
  15. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/NetworkX.ipynb +1 -1
  16. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/envs/py3.10-tests.yaml +5 -5
  17. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/envs/py3.11-docs.yaml +5 -5
  18. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/envs/py3.11-tests.yaml +5 -5
  19. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/envs/py3.12-tests.yaml +5 -5
  20. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/envs/py3.9-tests.yaml +5 -5
  21. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/_version.py +2 -2
  22. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/converter.py +150 -126
  23. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/fugue.py +3 -3
  24. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/interactive.py +1 -64
  25. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/networkx.py +1 -2
  26. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/plotting/core.py +3 -2
  27. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/plotting/scatter_matrix.py +0 -9
  28. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/conftest.py +1 -3
  29. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testcharts.py +148 -33
  30. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testgeo.py +5 -0
  31. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testinteractive.py +1 -92
  32. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testoperations.py +1 -11
  33. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testoptions.py +8 -2
  34. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testpanel.py +4 -15
  35. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testpatch.py +1 -6
  36. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testplotting.py +1 -6
  37. hvplot-0.11.0a1/hvplot/tests/teststatplots.py +24 -0
  38. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testui.py +7 -0
  39. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testutil.py +2 -21
  40. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/ui.py +36 -29
  41. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/util.py +35 -7
  42. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/utilities.py +1 -1
  43. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot.egg-info/PKG-INFO +7 -8
  44. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot.egg-info/SOURCES.txt +2 -1
  45. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot.egg-info/requires.txt +5 -5
  46. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/pyproject.toml +12 -8
  47. hvplot-0.10.0rc2/doc/_static/home/geopandas.gif +0 -0
  48. hvplot-0.10.0rc2/envs/py3.8-tests.yaml +0 -76
  49. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/.git-blame-ignore-revs +0 -0
  50. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/.git_archival.txt +0 -0
  51. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/.gitattributes +0 -0
  52. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/.github/CONTRIBUTING.md +0 -0
  53. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/.github/FUNDING.yml +0 -0
  54. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/.gitignore +0 -0
  55. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/.pre-commit-config.yaml +0 -0
  56. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/CHANGELOG.md +0 -0
  57. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/CODE_OF_CONDUCT.md +0 -0
  58. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/LICENSE +0 -0
  59. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/README.md +0 -0
  60. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/binder/environment.yml +0 -0
  61. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/binder/postBuild +0 -0
  62. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/conda.recipe/meta.yaml +0 -0
  63. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/custom.css +0 -0
  64. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/favicon.ico +0 -0
  65. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/bokeh.gif +0 -0
  66. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/dask.gif +0 -0
  67. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/explorer.gif +0 -0
  68. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/geo.gif +0 -0
  69. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/intake.gif +0 -0
  70. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/interactive_hvplot.gif +0 -0
  71. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/interactive_pandas.gif +0 -0
  72. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/interactive_xarray.gif +0 -0
  73. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/large_data.gif +0 -0
  74. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/layout.gif +0 -0
  75. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/matplotlib.png +0 -0
  76. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/networkx.gif +0 -0
  77. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/overlay.png +0 -0
  78. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/pandas.gif +0 -0
  79. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/plotly.gif +0 -0
  80. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/widgets.gif +0 -0
  81. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/home/xarray.gif +0 -0
  82. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/images/heat_and_trees.png +0 -0
  83. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/images/portfolio.png +0 -0
  84. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/logo.png +0 -0
  85. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/logo_horizontal.svg +0 -0
  86. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/_static/logo_stacked.svg +0 -0
  87. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/about.md +0 -0
  88. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/assets/console.png +0 -0
  89. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/assets/console_server.gif +0 -0
  90. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/assets/diagram.png +0 -0
  91. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/assets/diagram.svg +0 -0
  92. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/assets/hvplot-wm.png +0 -0
  93. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/assets/streamz_demo.gif +0 -0
  94. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/conf.py +0 -0
  95. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/conftest.py +0 -0
  96. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/getting_started/explorer.ipynb +0 -0
  97. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/getting_started/hvplot.ipynb +0 -0
  98. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/getting_started/index.md +0 -0
  99. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/getting_started/interactive.ipynb +0 -0
  100. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/governance/project-docs/CONTRIBUTING.md +0 -0
  101. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/governance/project-docs/GOVERNANCE.md +0 -0
  102. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/governance/project-docs/LICENSE.md +0 -0
  103. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/governance/project-docs/MEMBERS.md +0 -0
  104. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/andrewscurves.ipynb +0 -0
  105. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/area.ipynb +0 -0
  106. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/bar.ipynb +0 -0
  107. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/barh.ipynb +0 -0
  108. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/bivariate.ipynb +0 -0
  109. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/box.ipynb +0 -0
  110. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/errorbars.ipynb +0 -0
  111. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/heatmap.ipynb +0 -0
  112. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/hexbin.ipynb +0 -0
  113. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/hist.ipynb +0 -0
  114. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/kde.ipynb +0 -0
  115. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/labels.ipynb +0 -0
  116. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/lagplot.ipynb +0 -0
  117. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/line.ipynb +0 -0
  118. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/ohlc.ipynb +0 -0
  119. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/parallelcoordinates.ipynb +0 -0
  120. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/scatter.ipynb +0 -0
  121. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/scattermatrix.ipynb +0 -0
  122. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/step.ipynb +0 -0
  123. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/table.ipynb +0 -0
  124. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/tabular/violin.ipynb +0 -0
  125. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/xarray/bar.ipynb +0 -0
  126. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/xarray/contour.ipynb +0 -0
  127. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/xarray/contourf.ipynb +0 -0
  128. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/xarray/hist.ipynb +0 -0
  129. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/xarray/kde.ipynb +0 -0
  130. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/xarray/line.ipynb +0 -0
  131. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/xarray/quadmesh.ipynb +0 -0
  132. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/xarray/rgb.ipynb +0 -0
  133. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/xarray/vectorfield.ipynb +0 -0
  134. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/reference/xarray/violin.ipynb +0 -0
  135. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/releases.md +0 -0
  136. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/roadmap.md +0 -0
  137. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/topics.md +0 -0
  138. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Explorer.ipynb +0 -0
  139. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Geographic_Data.ipynb +0 -0
  140. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Gridded_Data.ipynb +0 -0
  141. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Integrations.ipynb +0 -0
  142. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Interactive.ipynb +0 -0
  143. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Introduction.ipynb +0 -0
  144. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Pandas_API.ipynb +0 -0
  145. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Plotting.ipynb +0 -0
  146. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Plotting_Extensions.ipynb +0 -0
  147. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Plotting_with_Matplotlib.ipynb +0 -0
  148. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Plotting_with_Plotly.ipynb +0 -0
  149. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Statistical_Plots.ipynb +0 -0
  150. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Streaming.ipynb +0 -0
  151. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Subplots.ipynb +0 -0
  152. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Timeseries_Data.ipynb +0 -0
  153. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Viewing.ipynb +0 -0
  154. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/Widgets.ipynb +0 -0
  155. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/images/simple.svg +0 -0
  156. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/doc/user_guide/index.md +0 -0
  157. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/__init__.py +0 -0
  158. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/backend_transforms.py +0 -0
  159. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/cudf.py +0 -0
  160. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/dask.py +0 -0
  161. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/data/crime.csv +0 -0
  162. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/datasets.yaml +0 -0
  163. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/ibis.py +0 -0
  164. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/intake.py +0 -0
  165. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/pandas.py +0 -0
  166. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/plotting/__init__.py +0 -0
  167. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/plotting/andrews_curves.py +0 -0
  168. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/plotting/lag_plot.py +0 -0
  169. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/plotting/parallel_coordinates.py +0 -0
  170. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/polars.py +0 -0
  171. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/sample_data.py +0 -0
  172. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/streamz.py +0 -0
  173. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/__init__.py +0 -0
  174. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/data/README.md +0 -0
  175. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/data/RGB-red.byte.tif +0 -0
  176. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/plotting/__init__.py +0 -0
  177. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/plotting/testcore.py +0 -0
  178. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/plotting/testohlc.py +0 -0
  179. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/plotting/testscattermatrix.py +0 -0
  180. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/test_links.py +0 -0
  181. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testbackend_transforms.py +0 -0
  182. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testfugue.py +0 -0
  183. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testgeowithoutgv.py +0 -0
  184. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testgridplots.py +0 -0
  185. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testhelp.py +0 -0
  186. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testibis.py +0 -0
  187. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testnetworkx.py +0 -0
  188. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testoverrides.py +0 -0
  189. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/teststreaming.py +0 -0
  190. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/testtransforms.py +0 -0
  191. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/tests/util.py +0 -0
  192. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot/xarray.py +0 -0
  193. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot.egg-info/dependency_links.txt +0 -0
  194. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot.egg-info/entry_points.txt +0 -0
  195. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/hvplot.egg-info/top_level.txt +0 -0
  196. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/scripts/update_conda_envs.py +0 -0
  197. {hvplot-0.10.0rc2 → hvplot-0.11.0a1}/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
@@ -105,7 +105,7 @@ jobs:
105
105
  with:
106
106
  python-version: ${{ env.PYTHON_VERSION }}
107
107
  - name: install
108
- run: pip install ."[doc, examples, geo]"
108
+ run: pip install -v --prefer-binary -e ."[doc, examples, geo]"
109
109
  - name: install dev nbsite
110
110
  run: pip install --pre -U nbsite
111
111
  - name: pip list
@@ -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.8", "3.12"],
63
+ "python-version": ["3.9", "3.12"],
64
64
  "exclude": [
65
65
  {
66
- "python-version": "3.8",
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.8", "3.12"],
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.8",
94
+ "python-version": "3.9",
95
95
  "os": "macos-latest"
96
96
  }
97
97
  ]
@@ -157,15 +157,8 @@ jobs:
157
157
  - uses: actions/setup-python@v5
158
158
  with:
159
159
  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
160
  - name: install with geo
167
- if: matrix.python-version != '3.8' || !contains(fromJSON('["ubuntu-latest", "windows-latest"]'), matrix.os)
168
- run: pip install -ve '.[tests, examples-tests, geo, hvdev, hvdev-geo, dev-extras]'
161
+ run: pip install -v --prefer-binary -e '.[tests, examples-tests, geo, hvdev, hvdev-geo, dev-extras]'
169
162
  - name: pip list
170
163
  run: pip list
171
164
  - name: bokeh sampledata
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: hvplot
3
- Version: 0.10.0rc2
3
+ Version: 0.11.0a1
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.8
23
+ Requires-Python: >=3.9
25
24
  Description-Content-Type: text/markdown
26
25
  License-File: LICENSE
27
- Requires-Dist: bokeh>=1.0.0
26
+ Requires-Dist: bokeh>=3.1
28
27
  Requires-Dist: colorcet>=2
29
- Requires-Dist: holoviews>=1.11.0
30
- Requires-Dist: numpy>=1.15
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>=0.11.0
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"
@@ -79,7 +79,7 @@ source .venv/bin/activate
79
79
  Install the test dependencies:
80
80
 
81
81
  ``` bash
82
- pip install -e '.[tests, examples-tests, geo, hvdev, hvdev-geo, dev-extras]'
82
+ pip install --prefer-binary -e '.[tests, examples-tests, geo, hvdev, hvdev-geo, dev-extras]'
83
83
  ```
84
84
 
85
85
  :::
@@ -5,7 +5,7 @@
5
5
  | Latest release | [![Github release](https://img.shields.io/github/release/holoviz/hvplot.svg?label=tag&colorB=11ccbb)](https://github.com/holoviz/hvplot/releases) [![PyPI version](https://img.shields.io/pypi/v/hvplot.svg?colorB=cc77dd)](https://pypi.python.org/pypi/hvplot) [![hvplot version](https://img.shields.io/conda/v/pyviz/hvplot.svg?colorB=4488ff&style=flat)](https://anaconda.org/pyviz/hvplot) [![conda-forge version](https://img.shields.io/conda/v/conda-forge/hvplot.svg?label=conda%7Cconda-forge&colorB=4488ff)](https://anaconda.org/conda-forge/hvplot) [![defaults version](https://img.shields.io/conda/v/anaconda/hvplot.svg?label=conda%7Cdefaults&style=flat&colorB=4488ff)](https://anaconda.org/anaconda/hvplot) |
6
6
  | Python | [![Python support](https://img.shields.io/pypi/pyversions/hvplot.svg)](https://pypi.org/project/hvplot/) |
7
7
 
8
- hvPlot supports Python 3.8 and above on Linux, Windows, or Mac. hvPlot can be installed with [conda](https://conda.io/en/latest/):
8
+ hvPlot supports Python 3.9 and above on Linux, Windows, or Mac. hvPlot can be installed with [conda](https://conda.io/en/latest/):
9
9
 
10
10
  conda install hvplot
11
11
 
@@ -89,11 +89,11 @@ align: center
89
89
 
90
90
  :::{tab-item} GeoPandas
91
91
  ```python
92
- import geopandas as gpd
92
+ import geopandas as gpd, geodatasets
93
93
  import hvplot.pandas
94
94
 
95
- gdf = gpd.read_file(gpd.datasets.get_path('naturalearth_cities'))
96
- gdf.hvplot(global_extent=True, tiles=True)
95
+ chicago = gpd.read_file(geodatasets.get_path("geoda.chicago_commpop"))
96
+ chicago.hvplot.polygons(geo=True, c='POP2010', hover_cols='all')
97
97
  ```
98
98
  ```{image} ./_static/home/geopandas.gif
99
99
  ---
@@ -31,8 +31,18 @@
31
31
  "source": [
32
32
  "import geopandas as gpd\n",
33
33
  "\n",
34
- "cities = gpd.read_file(gpd.datasets.get_path('naturalearth_cities'))\n",
35
- "cities.sample(5)"
34
+ "\n",
35
+ "data = {\n",
36
+ " 'City': ['London', 'Paris', 'Berlin', 'Madrid', 'Rome', 'Vienna', 'Warsaw', 'Amsterdam'],\n",
37
+ " 'Country': ['United Kingdom', 'France', 'Germany', 'Spain', 'Italy', 'Austria', 'Poland', 'Netherlands'],\n",
38
+ " 'Latitude': [51.5074, 48.8566, 52.5200, 40.4168, 41.9028, 48.2082, 52.2297, 52.3676],\n",
39
+ " 'Longitude': [-0.1278, 2.3522, 13.4050, -3.7038, 12.4964, 16.3738, 21.0122, 4.9041]\n",
40
+ "}\n",
41
+ "cities = gpd.GeoDataFrame(\n",
42
+ " data,\n",
43
+ " geometry=gpd.points_from_xy(data['Longitude'], data['Latitude']),\n",
44
+ " crs=\"EPSG:4326\",\n",
45
+ ")"
36
46
  ]
37
47
  },
38
48
  {
@@ -82,7 +92,7 @@
82
92
  "metadata": {},
83
93
  "outputs": [],
84
94
  "source": [
85
- "cities.hvplot(coastline=True, projection=ccrs.Geostationary(central_longitude=-30), global_extent=True)"
95
+ "cities.hvplot(coastline=True, projection=ccrs.Geostationary(central_longitude=10), global_extent=True)"
86
96
  ]
87
97
  }
88
98
  ],
@@ -29,10 +29,11 @@
29
29
  "metadata": {},
30
30
  "outputs": [],
31
31
  "source": [
32
+ "import geodatasets\n",
32
33
  "import geopandas as gpd\n",
33
34
  "\n",
34
- "countries = gpd.read_file(gpd.datasets.get_path('naturalearth_lowres'))\n",
35
- "countries.sample(5)"
35
+ "chicago = gpd.read_file(geodatasets.get_path(\"geoda.chicago_commpop\"))\n",
36
+ "chicago.sample(3)"
36
37
  ]
37
38
  },
38
39
  {
@@ -41,7 +42,7 @@
41
42
  "metadata": {},
42
43
  "outputs": [],
43
44
  "source": [
44
- "countries.hvplot(geo=True)"
45
+ "chicago.hvplot(geo=True)"
45
46
  ]
46
47
  },
47
48
  {
@@ -57,7 +58,7 @@
57
58
  "metadata": {},
58
59
  "outputs": [],
59
60
  "source": [
60
- "countries.hvplot.polygons(geo=True, c='pop_est', hover_cols='all')"
61
+ "chicago.hvplot.polygons(geo=True, c='POP2010', hover_cols='all')"
61
62
  ]
62
63
  },
63
64
  {
@@ -73,7 +74,11 @@
73
74
  "metadata": {},
74
75
  "outputs": [],
75
76
  "source": [
76
- "countries.hvplot.polygons(geo=True, c=countries.pop_est/countries.area, clabel='pop density')"
77
+ "chicago.hvplot.polygons(\n",
78
+ " geo=True,\n",
79
+ " c=chicago.POP2010/chicago.to_crs('EPSG:32616').area,\n",
80
+ " clabel='pop density',\n",
81
+ ")"
77
82
  ]
78
83
  }
79
84
  ],
@@ -0,0 +1,80 @@
1
+ {
2
+ "cells": [
3
+ {
4
+ "cell_type": "markdown",
5
+ "metadata": {},
6
+ "source": [
7
+ "# Paths"
8
+ ]
9
+ },
10
+ {
11
+ "cell_type": "code",
12
+ "execution_count": null,
13
+ "metadata": {},
14
+ "outputs": [],
15
+ "source": [
16
+ "import pandas as pd\n",
17
+ "import hvplot.pandas # noqa\n",
18
+ "import cartopy.crs as ccrs"
19
+ ]
20
+ },
21
+ {
22
+ "cell_type": "markdown",
23
+ "metadata": {},
24
+ "source": [
25
+ "Paths are useful if you are plotting lines on a geographic map."
26
+ ]
27
+ },
28
+ {
29
+ "cell_type": "code",
30
+ "execution_count": null,
31
+ "metadata": {},
32
+ "outputs": [],
33
+ "source": [
34
+ "df = pd.DataFrame({\"city\": [\"NY\", \"Delhi\"], \"lon\": [-75, 77.23], \"lat\": [43, 28.61]})"
35
+ ]
36
+ },
37
+ {
38
+ "cell_type": "markdown",
39
+ "metadata": {},
40
+ "source": [
41
+ "Notice how the line in blue between New York and Delhi is not straight on a flat PlateCarree map, this is because the Geodetic coordinate system is a truly spherical coordinate system, where a line between two points is defined as the shortest path between those points on the globe rather than 2d Cartesian space."
42
+ ]
43
+ },
44
+ {
45
+ "cell_type": "code",
46
+ "execution_count": null,
47
+ "metadata": {},
48
+ "outputs": [],
49
+ "source": [
50
+ "common_kwargs = dict(\n",
51
+ " x=\"lon\",\n",
52
+ " y=\"lat\",\n",
53
+ " geo=True,\n",
54
+ " project=True,\n",
55
+ " projection=ccrs.GOOGLE_MERCATOR,\n",
56
+ " global_extent=True\n",
57
+ ")\n",
58
+ "shortest_path = df.hvplot.paths(color=\"blue\", crs=ccrs.Geodetic(), tiles=True, **common_kwargs)\n",
59
+ "straight_path = df.hvplot.paths(color=\"grey\", line_dash=\"dashed\", **common_kwargs)\n",
60
+ "labels = df.hvplot.labels(text_color=\"black\", text=\"city\", **common_kwargs)\n",
61
+ "shortest_path * straight_path * labels"
62
+ ]
63
+ },
64
+ {
65
+ "cell_type": "markdown",
66
+ "metadata": {},
67
+ "source": [
68
+ "Example adapted from https://scitools.org.uk/cartopy/docs/latest/matplotlib/intro.html."
69
+ ]
70
+ }
71
+ ],
72
+ "metadata": {
73
+ "language_info": {
74
+ "name": "python",
75
+ "pygments_lexer": "ipython3"
76
+ }
77
+ },
78
+ "nbformat": 4,
79
+ "nbformat_minor": 2
80
+ }
@@ -79,6 +79,22 @@
79
79
  "data.hvplot.image(x='lon', y='lat', z='air', title=time, clabel='T [C]')"
80
80
  ]
81
81
  },
82
+ {
83
+ "cell_type": "markdown",
84
+ "metadata": {},
85
+ "source": [
86
+ "We can also override the colorbar ticks and labels with `cticks`, specified as an integer, list of ticks positions, or list of tuples of the tick positions and labels."
87
+ ]
88
+ },
89
+ {
90
+ "cell_type": "code",
91
+ "execution_count": null,
92
+ "metadata": {},
93
+ "outputs": [],
94
+ "source": [
95
+ "data.hvplot.image(x='lon', y='lat', z='air', title=time, clabel='T [C]', cticks=[(-40, \"Below Freezing\"), (0, \"Freezing\"), (40, \"Above Freezing\")])"
96
+ ]
97
+ },
82
98
  {
83
99
  "cell_type": "markdown",
84
100
  "metadata": {},
@@ -122,8 +122,8 @@
122
122
  " Axis labels for the x-axis, y-axis, and colorbar\n",
123
123
  " xlim/ylim (default=None): tuple or list\n",
124
124
  " Plot limits of the x- and y-axis\n",
125
- " xticks/yticks (default=None): int or list\n",
126
- " Ticks along x- and y-axis specified as an integer, list of\n",
125
+ " xticks/yticks/cticks (default=None): int or list\n",
126
+ " Ticks along x-axis, y-axis, and colorbar specified as an integer, list of\n",
127
127
  " ticks positions, or list of tuples of the tick positions and labels\n",
128
128
  " width (default=700)/height (default=300): int\n",
129
129
  " The width and height of the plot in pixels\n",
@@ -154,6 +154,29 @@
154
154
  " Aggregator to use when applying rasterize or datashade operation\n",
155
155
  " (valid options include 'mean', 'count', 'min', 'max' and more, and\n",
156
156
  " datashader reduction objects)\n",
157
+ " downsample (default=False):\n",
158
+ " Controls the application of downsampling to the plotted data,\n",
159
+ " which is particularly useful for large timeseries datasets to\n",
160
+ " reduce the amount of data sent to browser and improve\n",
161
+ " visualization performance. Requires HoloViews >= 1.16. Additional\n",
162
+ " dependencies: Installing the `tsdownsample` library is required\n",
163
+ " for using any downsampling methods other than the default 'lttb'.\n",
164
+ " Acceptable values:\n",
165
+ " - False: No downsampling is applied.\n",
166
+ " - True: Applies downsampling using HoloViews' default algorithm\n",
167
+ " (LTTB - Largest Triangle Three Buckets).\n",
168
+ " - 'lttb': Explicitly applies the Largest Triangle Three Buckets\n",
169
+ " algorithm.\n",
170
+ " - 'minmax': Applies the MinMax algorithm, selecting the minimum\n",
171
+ " and maximum values in each bin. Requires `tsdownsample`.\n",
172
+ " - 'm4': Applies the M4 algorithm, selecting the minimum, maximum,\n",
173
+ " first, and last values in each bin. Requires `tsdownsample`.\n",
174
+ " - 'minmax-lttb': Combines MinMax and LTTB algorithms for\n",
175
+ " downsampling, first applying MinMax to reduce to a preliminary\n",
176
+ " set of points, then LTTB for further reduction. Requires\n",
177
+ " `tsdownsample`.\n",
178
+ " Other string values corresponding to supported algorithms in\n",
179
+ " HoloViews may also be used.\n",
157
180
  " dynamic (default=True):\n",
158
181
  " Whether to return a dynamic plot which sends updates on widget and\n",
159
182
  " zoom/pan events or whether all the data should be embedded\n",
@@ -168,6 +191,10 @@
168
191
  " rasterize (default=False):\n",
169
192
  " Whether to apply rasterization using the datashader library\n",
170
193
  " returning an aggregated Image\n",
194
+ " resample_when (default=None):\n",
195
+ " Applies a resampling operation (datashade, rasterize or downsample) if\n",
196
+ " the number of individual data points present in the current zoom range\n",
197
+ " is above this threshold. The raw plot is displayed otherwise.\n",
171
198
  " x_sampling/y_sampling (default=None):\n",
172
199
  " Specifies the smallest allowed sampling interval along the x/y axis."
173
200
  ]
@@ -256,6 +256,29 @@
256
256
  " min_height=300, autorange='y', title=\"Datashader Rasterize\", colorbar=False, line_width=2)"
257
257
  ]
258
258
  },
259
+ {
260
+ "cell_type": "markdown",
261
+ "id": "5a98e727",
262
+ "metadata": {},
263
+ "source": [
264
+ "### Rasterize Conditionally\n",
265
+ "\n",
266
+ "Alternatively, it's possible to activate `rasterize` *conditionally* with `resample_when`.\n",
267
+ "\n",
268
+ "When the number of individual data points present in the current zoom range is below the provided threshold, the raw plot is displayed; otherwise the `rasterize`, `datashade`, or `downsample` operation is applied."
269
+ ]
270
+ },
271
+ {
272
+ "cell_type": "code",
273
+ "execution_count": null,
274
+ "id": "12910d8e",
275
+ "metadata": {},
276
+ "outputs": [],
277
+ "source": [
278
+ "df0.hvplot(x=\"time\", y=\"value\", rasterize=True, resample_when=1000, cnorm='eq_hist', padding=(0, 0.1),\n",
279
+ " min_height=300, autorange='y', title=\"Datashader Rasterize\", colorbar=False, line_width=2)"
280
+ ]
281
+ },
259
282
  {
260
283
  "cell_type": "markdown",
261
284
  "id": "naughty-adventure",
@@ -239,7 +239,7 @@
239
239
  "print(\"source vertex {target:length, }\")\n",
240
240
  "for v in G.nodes():\n",
241
241
  " spl = dict(nx.single_source_shortest_path_length(G, v))\n",
242
- " print('{} {} '.format(v, spl))\n",
242
+ " print(f'{v} {spl} ')\n",
243
243
  " for p in spl:\n",
244
244
  " pathlengths.append(spl[p])\n",
245
245
  "\n",
@@ -14,7 +14,7 @@ channels:
14
14
  - conda-forge
15
15
  dependencies:
16
16
  - python=3.10
17
- - bokeh>=1.0.0
17
+ - bokeh>=3.1
18
18
  - cartopy
19
19
  - colorcet>=2
20
20
  - dask
@@ -26,7 +26,7 @@ dependencies:
26
26
  - geodatasets>=2023.12.0
27
27
  - geopandas
28
28
  - geoviews-core>=1.9.0
29
- - holoviews>=1.11.0
29
+ - holoviews>=1.19.0
30
30
  - ibis-duckdb
31
31
  - intake-parquet>=0.2.3
32
32
  - intake-xarray>=0.5.0
@@ -38,10 +38,10 @@ dependencies:
38
38
  - networkx>=2.6.3
39
39
  - notebook>=5.4
40
40
  - numba>=0.51.0
41
- - numpy>=1.15
41
+ - numpy>=1.21
42
42
  - packaging
43
- - pandas
44
- - panel>=0.11.0
43
+ - pandas>=1.3
44
+ - panel>=1.0
45
45
  - param<3.0,>=1.12.0
46
46
  - parameterized
47
47
  - pillow>=8.2.0
@@ -14,7 +14,7 @@ channels:
14
14
  - conda-forge
15
15
  dependencies:
16
16
  - python=3.11
17
- - bokeh>=1.0.0
17
+ - bokeh>=3.1
18
18
  - cartopy
19
19
  - colorcet>=2
20
20
  - dask>=2021.3.0
@@ -25,7 +25,7 @@ dependencies:
25
25
  - geodatasets>=2023.12.0
26
26
  - geopandas
27
27
  - geoviews-core>=1.9.0
28
- - holoviews>=1.11.0
28
+ - holoviews>=1.19.0
29
29
  - ibis-duckdb
30
30
  - intake-parquet>=0.2.3
31
31
  - intake-xarray>=0.5.0
@@ -37,10 +37,10 @@ dependencies:
37
37
  - networkx>=2.6.3
38
38
  - notebook>=5.4
39
39
  - numba>=0.51.0
40
- - numpy>=1.15
40
+ - numpy>=1.21
41
41
  - packaging
42
- - pandas
43
- - panel>=0.11.0
42
+ - pandas>=1.3
43
+ - panel>=1.0
44
44
  - param<3.0,>=1.12.0
45
45
  - pillow>=8.2.0
46
46
  - plotly
@@ -14,7 +14,7 @@ channels:
14
14
  - conda-forge
15
15
  dependencies:
16
16
  - python=3.11
17
- - bokeh>=1.0.0
17
+ - bokeh>=3.1
18
18
  - cartopy
19
19
  - colorcet>=2
20
20
  - dask
@@ -26,7 +26,7 @@ dependencies:
26
26
  - geodatasets>=2023.12.0
27
27
  - geopandas
28
28
  - geoviews-core>=1.9.0
29
- - holoviews>=1.11.0
29
+ - holoviews>=1.19.0
30
30
  - ibis-duckdb
31
31
  - intake-parquet>=0.2.3
32
32
  - intake-xarray>=0.5.0
@@ -38,10 +38,10 @@ dependencies:
38
38
  - networkx>=2.6.3
39
39
  - notebook>=5.4
40
40
  - numba>=0.51.0
41
- - numpy>=1.15
41
+ - numpy>=1.21
42
42
  - packaging
43
- - pandas
44
- - panel>=0.11.0
43
+ - pandas>=1.3
44
+ - panel>=1.0
45
45
  - param<3.0,>=1.12.0
46
46
  - parameterized
47
47
  - pillow>=8.2.0
@@ -14,7 +14,7 @@ channels:
14
14
  - conda-forge
15
15
  dependencies:
16
16
  - python=3.12
17
- - bokeh>=1.0.0
17
+ - bokeh>=3.1
18
18
  - cartopy
19
19
  - colorcet>=2
20
20
  - dask
@@ -26,7 +26,7 @@ dependencies:
26
26
  - geodatasets>=2023.12.0
27
27
  - geopandas
28
28
  - geoviews-core>=1.9.0
29
- - holoviews>=1.11.0
29
+ - holoviews>=1.19.0
30
30
  - ibis-duckdb
31
31
  - intake-parquet>=0.2.3
32
32
  - intake-xarray>=0.5.0
@@ -38,10 +38,10 @@ dependencies:
38
38
  - networkx>=2.6.3
39
39
  - notebook>=5.4
40
40
  - numba>=0.51.0
41
- - numpy>=1.15
41
+ - numpy>=1.21
42
42
  - packaging
43
- - pandas
44
- - panel>=0.11.0
43
+ - pandas>=1.3
44
+ - panel>=1.0
45
45
  - param<3.0,>=1.12.0
46
46
  - parameterized
47
47
  - pillow>=8.2.0
@@ -14,7 +14,7 @@ channels:
14
14
  - conda-forge
15
15
  dependencies:
16
16
  - python=3.9
17
- - bokeh>=1.0.0
17
+ - bokeh>=3.1
18
18
  - cartopy
19
19
  - colorcet>=2
20
20
  - dask
@@ -26,7 +26,7 @@ dependencies:
26
26
  - geodatasets>=2023.12.0
27
27
  - geopandas
28
28
  - geoviews-core>=1.9.0
29
- - holoviews>=1.11.0
29
+ - holoviews>=1.19.0
30
30
  - ibis-duckdb
31
31
  - intake-parquet>=0.2.3
32
32
  - intake-xarray>=0.5.0
@@ -38,10 +38,10 @@ dependencies:
38
38
  - networkx>=2.6.3
39
39
  - notebook>=5.4
40
40
  - numba>=0.51.0
41
- - numpy>=1.15
41
+ - numpy>=1.21
42
42
  - packaging
43
- - pandas
44
- - panel>=0.11.0
43
+ - pandas>=1.3
44
+ - panel>=1.0
45
45
  - param<3.0,>=1.12.0
46
46
  - parameterized
47
47
  - pillow>=8.2.0
@@ -12,5 +12,5 @@ __version__: str
12
12
  __version_tuple__: VERSION_TUPLE
13
13
  version_tuple: VERSION_TUPLE
14
14
 
15
- __version__ = version = '0.10.0rc2'
16
- __version_tuple__ = version_tuple = (0, 10, 0)
15
+ __version__ = version = '0.11.0a1'
16
+ __version_tuple__ = version_tuple = (0, 11, 0)