hvplot 0.9.2rc1__tar.gz → 0.9.3a2__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 (268) hide show
  1. hvplot-0.9.3a2/.git-blame-ignore-revs +5 -0
  2. hvplot-0.9.3a2/.git_archival.txt +4 -0
  3. hvplot-0.9.3a2/.gitattributes +5 -0
  4. hvplot-0.9.3a2/.github/CONTRIBUTING.md +3 -0
  5. hvplot-0.9.3a2/.github/FUNDING.yml +3 -0
  6. hvplot-0.9.3a2/.github/workflows/build.yaml +75 -0
  7. hvplot-0.9.3a2/.github/workflows/docs.yaml +124 -0
  8. hvplot-0.9.3a2/.github/workflows/test.yaml +162 -0
  9. hvplot-0.9.3a2/.gitignore +129 -0
  10. hvplot-0.9.3a2/.pre-commit-config.yaml +47 -0
  11. hvplot-0.9.3a2/CHANGELOG.md +3 -0
  12. hvplot-0.9.3a2/CODE_OF_CONDUCT.md +5 -0
  13. {hvplot-0.9.2rc1/hvplot.egg-info → hvplot-0.9.3a2}/PKG-INFO +64 -184
  14. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/README.md +2 -1
  15. hvplot-0.9.3a2/binder/environment.yml +36 -0
  16. hvplot-0.9.3a2/binder/postBuild +1 -0
  17. hvplot-0.9.3a2/conda.recipe/meta.yaml +56 -0
  18. hvplot-0.9.3a2/doc/_static/custom.css +22 -0
  19. hvplot-0.9.3a2/doc/_static/favicon.ico +0 -0
  20. hvplot-0.9.3a2/doc/_static/home/bokeh.gif +0 -0
  21. hvplot-0.9.3a2/doc/_static/home/dask.gif +0 -0
  22. hvplot-0.9.3a2/doc/_static/home/explorer.gif +0 -0
  23. hvplot-0.9.3a2/doc/_static/home/geo.gif +0 -0
  24. hvplot-0.9.3a2/doc/_static/home/geopandas.gif +0 -0
  25. hvplot-0.9.3a2/doc/_static/home/intake.gif +0 -0
  26. hvplot-0.9.3a2/doc/_static/home/interactive_hvplot.gif +0 -0
  27. hvplot-0.9.3a2/doc/_static/home/interactive_pandas.gif +0 -0
  28. hvplot-0.9.3a2/doc/_static/home/interactive_xarray.gif +0 -0
  29. hvplot-0.9.3a2/doc/_static/home/large_data.gif +0 -0
  30. hvplot-0.9.3a2/doc/_static/home/layout.gif +0 -0
  31. hvplot-0.9.3a2/doc/_static/home/matplotlib.png +0 -0
  32. hvplot-0.9.3a2/doc/_static/home/networkx.gif +0 -0
  33. hvplot-0.9.3a2/doc/_static/home/overlay.png +0 -0
  34. hvplot-0.9.3a2/doc/_static/home/pandas.gif +0 -0
  35. hvplot-0.9.3a2/doc/_static/home/plotly.gif +0 -0
  36. hvplot-0.9.3a2/doc/_static/home/widgets.gif +0 -0
  37. hvplot-0.9.3a2/doc/_static/home/xarray.gif +0 -0
  38. hvplot-0.9.3a2/doc/_static/images/heat_and_trees.png +0 -0
  39. hvplot-0.9.3a2/doc/_static/images/portfolio.png +0 -0
  40. hvplot-0.9.3a2/doc/_static/logo.png +0 -0
  41. hvplot-0.9.3a2/doc/_static/logo_horizontal.svg +233 -0
  42. hvplot-0.9.3a2/doc/_static/logo_stacked.svg +238 -0
  43. hvplot-0.9.3a2/doc/about.md +9 -0
  44. hvplot-0.9.3a2/doc/assets/diagram.svg +2075 -0
  45. hvplot-0.9.3a2/doc/assets/streamz_demo.gif +0 -0
  46. hvplot-0.9.3a2/doc/conf.py +129 -0
  47. hvplot-0.9.3a2/doc/conftest.py +44 -0
  48. hvplot-0.9.3a2/doc/developer_guide/index.md +176 -0
  49. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/getting_started/explorer.ipynb +8 -0
  50. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/getting_started/hvplot.ipynb +8 -0
  51. hvplot-0.9.3a2/doc/getting_started/index.md +64 -0
  52. hvplot-0.9.3a2/doc/getting_started/installation.md +23 -0
  53. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/getting_started/interactive.ipynb +8 -0
  54. hvplot-0.9.3a2/doc/governance/project-docs/CONTRIBUTING.md +5 -0
  55. hvplot-0.9.3a2/doc/governance/project-docs/GOVERNANCE.md +10 -0
  56. hvplot-0.9.3a2/doc/governance/project-docs/LICENSE.md +3 -0
  57. hvplot-0.9.3a2/doc/governance/project-docs/MEMBERS.md +14 -0
  58. hvplot-0.9.3a2/doc/index.md +413 -0
  59. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/geopandas/points.ipynb +7 -0
  60. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/geopandas/polygons.ipynb +7 -0
  61. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/tabular/andrewscurves.ipynb +8 -0
  62. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/tabular/area.ipynb +12 -2
  63. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/tabular/bar.ipynb +7 -0
  64. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/tabular/barh.ipynb +7 -0
  65. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/tabular/bivariate.ipynb +7 -0
  66. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/tabular/box.ipynb +8 -1
  67. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/tabular/errorbars.ipynb +8 -1
  68. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/tabular/heatmap.ipynb +7 -0
  69. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/tabular/hexbin.ipynb +8 -1
  70. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/tabular/hist.ipynb +7 -0
  71. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/tabular/kde.ipynb +7 -0
  72. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/tabular/labels.ipynb +8 -1
  73. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/tabular/lagplot.ipynb +8 -0
  74. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/tabular/line.ipynb +7 -0
  75. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/tabular/ohlc.ipynb +7 -0
  76. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/tabular/parallelcoordinates.ipynb +8 -0
  77. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/tabular/scatter.ipynb +7 -0
  78. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/tabular/scattermatrix.ipynb +8 -0
  79. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/tabular/step.ipynb +8 -1
  80. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/tabular/table.ipynb +8 -1
  81. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/tabular/violin.ipynb +8 -1
  82. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/xarray/bar.ipynb +8 -0
  83. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/xarray/contour.ipynb +7 -0
  84. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/xarray/contourf.ipynb +7 -0
  85. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/xarray/hist.ipynb +7 -0
  86. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/xarray/image.ipynb +7 -0
  87. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/xarray/kde.ipynb +8 -0
  88. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/xarray/line.ipynb +7 -0
  89. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/reference/xarray/quadmesh.ipynb +8 -1
  90. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/xarray/rgb.ipynb +8 -1
  91. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/xarray/vectorfield.ipynb +8 -1
  92. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/reference/xarray/violin.ipynb +8 -0
  93. hvplot-0.9.3a2/doc/releases.md +485 -0
  94. hvplot-0.9.3a2/doc/roadmap.md +92 -0
  95. hvplot-0.9.3a2/doc/topics.md +36 -0
  96. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/user_guide/Customization.ipynb +19 -1
  97. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/user_guide/Explorer.ipynb +8 -0
  98. hvplot-0.9.3a2/doc/user_guide/Geographic_Data.ipynb +435 -0
  99. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/user_guide/Gridded_Data.ipynb +7 -0
  100. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/user_guide/Integrations.ipynb +8 -0
  101. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/user_guide/Interactive.ipynb +7 -0
  102. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/user_guide/Introduction.ipynb +7 -0
  103. hvplot-0.9.3a2/doc/user_guide/Large_Timeseries.ipynb +462 -0
  104. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/user_guide/NetworkX.ipynb +7 -0
  105. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/user_guide/Pandas_API.ipynb +9 -1
  106. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/user_guide/Plotting.ipynb +8 -1
  107. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/user_guide/Plotting_Extensions.ipynb +8 -0
  108. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/user_guide/Plotting_with_Matplotlib.ipynb +8 -1
  109. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/user_guide/Plotting_with_Plotly.ipynb +8 -1
  110. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/user_guide/Statistical_Plots.ipynb +7 -0
  111. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/user_guide/Streaming.ipynb +7 -0
  112. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/user_guide/Subplots.ipynb +7 -0
  113. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/user_guide/Timeseries_Data.ipynb +9 -13
  114. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/user_guide/Viewing.ipynb +7 -0
  115. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a2/doc}/user_guide/Widgets.ipynb +7 -0
  116. hvplot-0.9.3a2/doc/user_guide/index.md +103 -0
  117. hvplot-0.9.3a2/envs/py3.10-tests.yaml +71 -0
  118. hvplot-0.9.3a2/envs/py3.11-docs.yaml +62 -0
  119. hvplot-0.9.3a2/envs/py3.11-tests.yaml +71 -0
  120. hvplot-0.9.3a2/envs/py3.12-tests.yaml +71 -0
  121. hvplot-0.9.3a2/envs/py3.8-tests.yaml +71 -0
  122. hvplot-0.9.3a2/envs/py3.9-tests.yaml +71 -0
  123. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/__init__.py +77 -23
  124. hvplot-0.9.3a2/hvplot/_version.py +16 -0
  125. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/backend_transforms.py +13 -12
  126. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/converter.py +912 -418
  127. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/cudf.py +6 -5
  128. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/dask.py +7 -6
  129. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/fugue.py +6 -4
  130. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/ibis.py +5 -4
  131. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/intake.py +10 -6
  132. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/interactive.py +122 -32
  133. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/networkx.py +39 -20
  134. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/pandas.py +10 -6
  135. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/plotting/__init__.py +9 -7
  136. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/plotting/andrews_curves.py +31 -13
  137. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/plotting/core.py +115 -117
  138. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/plotting/lag_plot.py +2 -3
  139. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/plotting/parallel_coordinates.py +26 -11
  140. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/plotting/scatter_matrix.py +49 -35
  141. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/polars.py +4 -3
  142. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/sample_data.py +3 -6
  143. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/streamz.py +5 -3
  144. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/conftest.py +16 -9
  145. hvplot-0.9.3a2/hvplot/tests/data/README.md +5 -0
  146. hvplot-0.9.3a2/hvplot/tests/data/RGB-red.byte.tif +0 -0
  147. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/plotting/testcore.py +30 -24
  148. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/plotting/testohlc.py +5 -2
  149. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/plotting/testscattermatrix.py +3 -4
  150. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/test_links.py +19 -19
  151. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testbackend_transforms.py +7 -5
  152. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testcharts.py +134 -68
  153. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testfugue.py +4 -4
  154. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testgeo.py +95 -47
  155. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testgeowithoutgv.py +11 -1
  156. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testgridplots.py +47 -33
  157. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testhelp.py +13 -4
  158. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testinteractive.py +111 -98
  159. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testnetworkx.py +2 -2
  160. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testoperations.py +101 -37
  161. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testoptions.py +94 -44
  162. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testoverrides.py +4 -5
  163. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testpanel.py +6 -5
  164. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testpatch.py +26 -18
  165. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testplotting.py +9 -12
  166. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/teststreaming.py +2 -2
  167. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testtransforms.py +10 -15
  168. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testui.py +40 -49
  169. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testutil.py +73 -65
  170. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/util.py +10 -13
  171. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/ui.py +204 -133
  172. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/util.py +111 -50
  173. hvplot-0.9.3a2/hvplot/utilities.py +129 -0
  174. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/xarray.py +6 -5
  175. {hvplot-0.9.2rc1 → hvplot-0.9.3a2/hvplot.egg-info}/PKG-INFO +64 -184
  176. hvplot-0.9.3a2/hvplot.egg-info/SOURCES.txt +192 -0
  177. hvplot-0.9.3a2/hvplot.egg-info/requires.txt +91 -0
  178. hvplot-0.9.3a2/pyproject.toml +210 -0
  179. hvplot-0.9.3a2/scripts/update_conda_envs.py +27 -0
  180. hvplot-0.9.3a2/setup.cfg +4 -0
  181. hvplot-0.9.2rc1/MANIFEST.in +0 -9
  182. hvplot-0.9.2rc1/examples/conftest.py +0 -1
  183. hvplot-0.9.2rc1/examples/getting_started/explorer.ipynb +0 -139
  184. hvplot-0.9.2rc1/examples/getting_started/interactive.ipynb +0 -185
  185. hvplot-0.9.2rc1/examples/reference/tabular/andrewscurves.ipynb +0 -74
  186. hvplot-0.9.2rc1/examples/reference/tabular/bar.ipynb +0 -266
  187. hvplot-0.9.2rc1/examples/reference/tabular/barh.ipynb +0 -49
  188. hvplot-0.9.2rc1/examples/reference/tabular/box.ipynb +0 -81
  189. hvplot-0.9.2rc1/examples/reference/tabular/heatmap.ipynb +0 -95
  190. hvplot-0.9.2rc1/examples/reference/tabular/hist.ipynb +0 -115
  191. hvplot-0.9.2rc1/examples/reference/tabular/kde.ipynb +0 -84
  192. hvplot-0.9.2rc1/examples/reference/tabular/ohlc.ipynb +0 -103
  193. hvplot-0.9.2rc1/examples/reference/tabular/scatter.ipynb +0 -74
  194. hvplot-0.9.2rc1/examples/reference/tabular/scattermatrix.ipynb +0 -186
  195. hvplot-0.9.2rc1/examples/reference/tabular/table.ipynb +0 -55
  196. hvplot-0.9.2rc1/examples/reference/tabular/violin.ipynb +0 -50
  197. hvplot-0.9.2rc1/examples/reference/xarray/contourf.ipynb +0 -83
  198. hvplot-0.9.2rc1/examples/reference/xarray/hist.ipynb +0 -66
  199. hvplot-0.9.2rc1/examples/reference/xarray/kde.ipynb +0 -53
  200. hvplot-0.9.2rc1/examples/reference/xarray/quadmesh.ipynb +0 -65
  201. hvplot-0.9.2rc1/examples/user_guide/Customization.ipynb +0 -246
  202. hvplot-0.9.2rc1/examples/user_guide/Explorer.ipynb +0 -331
  203. hvplot-0.9.2rc1/examples/user_guide/Geographic_Data.ipynb +0 -280
  204. hvplot-0.9.2rc1/examples/user_guide/Integrations.ipynb +0 -581
  205. hvplot-0.9.2rc1/examples/user_guide/Interactive.ipynb +0 -451
  206. hvplot-0.9.2rc1/examples/user_guide/Pandas_API.ipynb +0 -1175
  207. hvplot-0.9.2rc1/examples/user_guide/Plotting_Extensions.ipynb +0 -242
  208. hvplot-0.9.2rc1/examples/user_guide/Plotting_with_Matplotlib.ipynb +0 -683
  209. hvplot-0.9.2rc1/examples/user_guide/Statistical_Plots.ipynb +0 -140
  210. hvplot-0.9.2rc1/examples/user_guide/Timeseries_Data.ipynb +0 -220
  211. hvplot-0.9.2rc1/examples/user_guide/Widgets.ipynb +0 -177
  212. hvplot-0.9.2rc1/hvplot/.version +0 -1
  213. hvplot-0.9.2rc1/hvplot/examples/assets/console.png +0 -0
  214. hvplot-0.9.2rc1/hvplot/examples/assets/console_server.gif +0 -0
  215. hvplot-0.9.2rc1/hvplot/examples/assets/diagram.png +0 -0
  216. hvplot-0.9.2rc1/hvplot/examples/assets/hvplot-wm.png +0 -0
  217. hvplot-0.9.2rc1/hvplot/examples/conftest.py +0 -1
  218. hvplot-0.9.2rc1/hvplot/examples/data/crime.csv +0 -56
  219. hvplot-0.9.2rc1/hvplot/examples/datasets.yaml +0 -48
  220. hvplot-0.9.2rc1/hvplot/examples/getting_started/hvplot.ipynb +0 -424
  221. hvplot-0.9.2rc1/hvplot/examples/reference/geopandas/points.ipynb +0 -90
  222. hvplot-0.9.2rc1/hvplot/examples/reference/geopandas/polygons.ipynb +0 -81
  223. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/area.ipynb +0 -119
  224. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/bivariate.ipynb +0 -48
  225. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/errorbars.ipynb +0 -74
  226. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/hexbin.ipynb +0 -51
  227. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/labels.ipynb +0 -72
  228. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/lagplot.ipynb +0 -72
  229. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/line.ipynb +0 -48
  230. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/parallelcoordinates.ipynb +0 -68
  231. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/step.ipynb +0 -48
  232. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/bar.ipynb +0 -76
  233. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/contour.ipynb +0 -85
  234. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/image.ipynb +0 -102
  235. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/line.ipynb +0 -66
  236. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/rgb.ipynb +0 -56
  237. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/vectorfield.ipynb +0 -119
  238. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/violin.ipynb +0 -53
  239. hvplot-0.9.2rc1/hvplot/examples/user_guide/Geographic_Data.ipynb +0 -280
  240. hvplot-0.9.2rc1/hvplot/examples/user_guide/Gridded_Data.ipynb +0 -297
  241. hvplot-0.9.2rc1/hvplot/examples/user_guide/Introduction.ipynb +0 -206
  242. hvplot-0.9.2rc1/hvplot/examples/user_guide/NetworkX.ipynb +0 -759
  243. hvplot-0.9.2rc1/hvplot/examples/user_guide/Plotting.ipynb +0 -652
  244. hvplot-0.9.2rc1/hvplot/examples/user_guide/Plotting_with_Plotly.ipynb +0 -681
  245. hvplot-0.9.2rc1/hvplot/examples/user_guide/Streaming.ipynb +0 -245
  246. hvplot-0.9.2rc1/hvplot/examples/user_guide/Subplots.ipynb +0 -142
  247. hvplot-0.9.2rc1/hvplot/examples/user_guide/Viewing.ipynb +0 -197
  248. hvplot-0.9.2rc1/hvplot/examples/user_guide/images/simple.svg +0 -59
  249. hvplot-0.9.2rc1/hvplot/utilities.py +0 -62
  250. hvplot-0.9.2rc1/hvplot.egg-info/SOURCES.txt +0 -193
  251. hvplot-0.9.2rc1/hvplot.egg-info/requires.txt +0 -207
  252. hvplot-0.9.2rc1/pyproject.toml +0 -32
  253. hvplot-0.9.2rc1/setup.cfg +0 -12
  254. hvplot-0.9.2rc1/setup.py +0 -184
  255. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/LICENSE +0 -0
  256. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/assets/console.png +0 -0
  257. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/assets/console_server.gif +0 -0
  258. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/assets/diagram.png +0 -0
  259. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/assets/hvplot-wm.png +0 -0
  260. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/doc}/user_guide/images/simple.svg +0 -0
  261. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/hvplot}/data/crime.csv +0 -0
  262. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a2/hvplot}/datasets.yaml +0 -0
  263. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/__init__.py +0 -0
  264. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/plotting/__init__.py +0 -0
  265. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot/tests/testibis.py +0 -0
  266. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot.egg-info/dependency_links.txt +0 -0
  267. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot.egg-info/entry_points.txt +0 -0
  268. {hvplot-0.9.2rc1 → hvplot-0.9.3a2}/hvplot.egg-info/top_level.txt +0 -0
@@ -0,0 +1,5 @@
1
+ # Run this command to always ignore formatting commits in `git blame`
2
+ # git config blame.ignoreRevsFile .git-blame-ignore-revs
3
+
4
+ # Ignore linting/formatting with ruff initial PR (https://github.com/holoviz/hvplot/pull/1320)
5
+ 6c33e47b740e0a5093688a855e99559245c553fd
@@ -0,0 +1,4 @@
1
+ node: $Format:%H$
2
+ node-date: $Format:%cI$
3
+ describe-name: $Format:%(describe:tags=true,match=*[0-9]*)$
4
+ ref-names: $Format:%D$
@@ -0,0 +1,5 @@
1
+ # For setuptools_scm with .git_archival.txt
2
+ .git_archival.txt export-subst
3
+ # Line Endings configuration file for Git
4
+ # Set the default behavior, in case people don't have or can't have core.autocrlf set.
5
+ * text=auto
@@ -0,0 +1,3 @@
1
+ # Contributing to hvPlot
2
+
3
+ Please follow the [contributor guide](https://hvplot.holoviz.org/developer_guide/index.html).
@@ -0,0 +1,3 @@
1
+ # These are supported funding model platforms
2
+
3
+ open_collective: holoviz
@@ -0,0 +1,75 @@
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
+ jobs:
18
+ conda_build:
19
+ name: Build Conda Packages
20
+ runs-on: 'ubuntu-latest'
21
+ defaults:
22
+ run:
23
+ shell: bash -l {0}
24
+ env:
25
+ MPLBACKEND: "Agg"
26
+ steps:
27
+ - uses: actions/checkout@v4
28
+ - name: Fetch unshallow
29
+ run: git fetch --prune --tags --unshallow -f
30
+ - uses: conda-incubator/setup-miniconda@v3
31
+ with:
32
+ miniconda-version: "latest"
33
+ python-version: ${{ env.PYTHON_VERSION }}
34
+ auto-update-conda: true
35
+ - name: Set output
36
+ id: vars
37
+ run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
38
+ - name: conda setup
39
+ run: conda install anaconda-client conda-build setuptools_scm
40
+ - name: conda build
41
+ run: VERSION=`python -m setuptools_scm` conda build conda.recipe/
42
+ - name: conda dev upload
43
+ if: (github.event_name == 'push' && (contains(steps.vars.outputs.tag, 'a') || contains(steps.vars.outputs.tag, 'b') || contains(steps.vars.outputs.tag, 'rc')))
44
+ run: anaconda --token ${{ secrets.CONDA_UPLOAD_TOKEN }} upload --user pyviz --label=dev $(VERSION=`python -m setuptools_scm` conda build --output conda.recipe)
45
+ - name: conda main upload
46
+ if: (github.event_name == 'push' && !(contains(steps.vars.outputs.tag, 'a') || contains(steps.vars.outputs.tag, 'b') || contains(steps.vars.outputs.tag, 'rc')))
47
+ run: anaconda --token ${{ secrets.CONDA_UPLOAD_TOKEN }} upload --user pyviz --label=dev --label=main $(VERSION=`python -m setuptools_scm` conda build --output conda.recipe)
48
+ pip_build:
49
+ name: Build PyPI Packages
50
+ runs-on: 'ubuntu-latest'
51
+ defaults:
52
+ run:
53
+ shell: bash -l {0}
54
+ env:
55
+ MPLBACKEND: "Agg"
56
+ steps:
57
+ - uses: actions/checkout@v4
58
+ - name: Fetch unshallow
59
+ run: git fetch --prune --tags --unshallow -f
60
+ - uses: actions/setup-python@v5
61
+ with:
62
+ python-version: ${{ env.PYTHON_VERSION }}
63
+ - name: env setup
64
+ run: |
65
+ python -m pip install --upgrade pip setuptools
66
+ python -m pip install build
67
+ - name: pip build
68
+ run: python -m build
69
+ - name: Publish package to PyPI
70
+ if: github.event_name == 'push'
71
+ uses: pypa/gh-action-pypi-publish@release/v1
72
+ with:
73
+ user: ${{ secrets.PPU }}
74
+ password: ${{ secrets.PPP }}
75
+ packages-dir: dist/
@@ -0,0 +1,124 @@
1
+ name: docs
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
+ workflow_dispatch:
10
+ inputs:
11
+ target:
12
+ description: 'Site to build and deploy'
13
+ type: choice
14
+ options:
15
+ - dev
16
+ - main
17
+ - dryrun
18
+ required: true
19
+ default: dryrun
20
+ schedule:
21
+ - cron: '0 15 * * SUN'
22
+
23
+ env:
24
+ PYTHON_VERSION: "3.11"
25
+
26
+ jobs:
27
+ conda_build_docs:
28
+ name: Documentation:conda
29
+ runs-on: 'ubuntu-latest'
30
+ timeout-minutes: 120
31
+ defaults:
32
+ run:
33
+ shell: bash -l {0}
34
+ env:
35
+ DESC: "Documentation build"
36
+ MPLBACKEND: "Agg"
37
+ MOZ_HEADLESS: 1
38
+ DISPLAY: ":99.0"
39
+ steps:
40
+ - uses: actions/checkout@v4
41
+ with:
42
+ fetch-depth: 0
43
+ - uses: conda-incubator/setup-miniconda@v3
44
+ with:
45
+ auto-update-conda: true
46
+ environment-file: envs/py${{ env.PYTHON_VERSION }}-docs.yaml
47
+ activate-environment: hvplotdocs
48
+ - name: Set and echo git ref
49
+ id: vars
50
+ run: |
51
+ echo "Deploying from ref ${GITHUB_REF#refs/*/}"
52
+ echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
53
+ - name: bokeh sampledata
54
+ run: bokeh sampledata
55
+ - name: install dev nbsite
56
+ run: pip install --pre -U nbsite
57
+ - name: conda info
58
+ run: conda info
59
+ - name: conda list
60
+ run: conda list
61
+ - name: build docs
62
+ run: sphinx-build -b html doc builtdocs
63
+ - name: report failure
64
+ if: failure()
65
+ run: cat /tmp/sphinx-*.log | tail -n 100
66
+ - name: Deploy dev
67
+ uses: peaceiris/actions-gh-pages@v3
68
+ if: |
69
+ (github.event_name == 'workflow_dispatch' && github.event.inputs.target == 'dev') ||
70
+ (github.event_name == 'push' && (contains(steps.vars.outputs.tag, 'a') || contains(steps.vars.outputs.tag, 'b') || contains(steps.vars.outputs.tag, 'rc')))
71
+ with:
72
+ personal_token: ${{ secrets.ACCESS_TOKEN }}
73
+ external_repository: holoviz-dev/hvplot
74
+ publish_dir: ./builtdocs
75
+ force_orphan: true
76
+ exclude_assets: '.doctrees'
77
+ - name: Deploy main
78
+ if: |
79
+ (github.event_name == 'workflow_dispatch' && github.event.inputs.target == 'main') ||
80
+ (github.event_name == 'push' && !(contains(steps.vars.outputs.tag, 'a') || contains(steps.vars.outputs.tag, 'b') || contains(steps.vars.outputs.tag, 'rc')))
81
+ uses: peaceiris/actions-gh-pages@v3
82
+ with:
83
+ github_token: ${{ secrets.GITHUB_TOKEN }}
84
+ publish_dir: ./builtdocs
85
+ cname: hvplot.holoviz.org
86
+ force_orphan: true
87
+ exclude_assets: '.doctrees'
88
+ pip_build_docs:
89
+ name: Documentation:pip
90
+ runs-on: 'ubuntu-latest'
91
+ timeout-minutes: 120
92
+ defaults:
93
+ run:
94
+ shell: bash -l {0}
95
+ env:
96
+ DESC: "Documentation build"
97
+ MPLBACKEND: "Agg"
98
+ MOZ_HEADLESS: 1
99
+ DISPLAY: ":99.0"
100
+ steps:
101
+ - uses: actions/checkout@v4
102
+ with:
103
+ fetch-depth: 0
104
+ - uses: actions/setup-python@v5
105
+ with:
106
+ python-version: ${{ env.PYTHON_VERSION }}
107
+ - name: install
108
+ run: pip install ."[doc, examples, geo]"
109
+ - name: install dev nbsite
110
+ run: pip install --pre -U nbsite
111
+ - name: pip list
112
+ run: pip list
113
+ - name: Set and echo git ref
114
+ id: vars
115
+ run: |
116
+ echo "Deploying from ref ${GITHUB_REF#refs/*/}"
117
+ echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT
118
+ - name: bokeh sampledata
119
+ run: bokeh sampledata
120
+ - name: build docs
121
+ run: sphinx-build -b html doc builtdocs
122
+ - name: report failure
123
+ if: failure()
124
+ run: cat /tmp/sphinx-*.log | tail -n 100
@@ -0,0 +1,162 @@
1
+ name: tests
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
+ branches:
10
+ - main
11
+ pull_request:
12
+ branches:
13
+ - '*'
14
+ workflow_dispatch:
15
+ inputs:
16
+ target:
17
+ description: "How much of the test suite to run"
18
+ type: choice
19
+ default: default
20
+ options:
21
+ - default
22
+ - full
23
+ - downstream
24
+ cache:
25
+ description: "Use cache"
26
+ type: boolean
27
+ default: true
28
+ schedule:
29
+ - cron: '0 15 * * SUN'
30
+
31
+ concurrency:
32
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
33
+ cancel-in-progress: true
34
+
35
+ jobs:
36
+ pre_commit:
37
+ name: Run pre-commit
38
+ runs-on: 'ubuntu-latest'
39
+ steps:
40
+ - uses: holoviz-dev/holoviz_tasks/pre-commit@v0.1a19
41
+ setup:
42
+ name: Setup workflow
43
+ runs-on: ubuntu-latest
44
+ outputs:
45
+ matrix: ${{ env.MATRIX }}
46
+ matrix_option: ${{ env.MATRIX_OPTION }}
47
+ steps:
48
+ - name: Set matrix option
49
+ run: |
50
+ if [[ '${{ github.event_name }}' == 'workflow_dispatch' ]]; then
51
+ OPTION=${{ github.event.inputs.target }}
52
+ elif [[ '${{ github.event_name }}' == 'schedule' ]]; then
53
+ OPTION="full"
54
+ elif [[ '${{ github.event_name }}' == 'push' && '${{ github.ref_type }}' == 'tag' ]]; then
55
+ OPTION="full"
56
+ else
57
+ OPTION="default"
58
+ fi
59
+ echo "MATRIX_OPTION=$OPTION" >> $GITHUB_ENV
60
+ - name: Set test matrix with 'default' option
61
+ if: env.MATRIX_OPTION == 'default'
62
+ run: |
63
+ MATRIX=$(jq -nsc '{
64
+ "os": ["ubuntu-latest", "macos-latest", "windows-latest"],
65
+ "python-version": ["3.8", "3.12"]
66
+ }')
67
+ echo "MATRIX=$MATRIX" >> $GITHUB_ENV
68
+ - name: Set test matrix with 'full' option
69
+ if: env.MATRIX_OPTION == 'full'
70
+ run: |
71
+ MATRIX=$(jq -nsc '{
72
+ "os": ["ubuntu-latest", "macos-latest", "windows-latest"],
73
+ "python-version": ["3.8", "3.9", "3.10", "3.11", "3.12"]
74
+ }')
75
+ echo "MATRIX=$MATRIX" >> $GITHUB_ENV
76
+ - name: Set test matrix with 'downstream' option
77
+ if: env.MATRIX_OPTION == 'downstream'
78
+ run: |
79
+ MATRIX=$(jq -nsc '{
80
+ "os": ["ubuntu-latest"],
81
+ "python-version": ["3.12"]
82
+ }')
83
+ echo "MATRIX=$MATRIX" >> $GITHUB_ENV
84
+
85
+ conda_suite:
86
+ name: conda tests:${{ matrix.os }}:${{ matrix.python-version }}
87
+ needs: [pre_commit, setup]
88
+ if: needs.setup.outputs.matrix_option != 'default'
89
+ runs-on: ${{ matrix.os }}
90
+ strategy:
91
+ fail-fast: false
92
+ matrix: ${{ fromJson(needs.setup.outputs.matrix) }}
93
+ timeout-minutes: 90
94
+ defaults:
95
+ run:
96
+ shell: bash -el {0}
97
+ steps:
98
+ - uses: actions/checkout@v4
99
+ with:
100
+ fetch-depth: 0
101
+ - uses: conda-incubator/setup-miniconda@v3
102
+ with:
103
+ auto-update-conda: true
104
+ environment-file: envs/py${{ matrix.python-version }}-tests.yaml
105
+ activate-environment: hvplottests
106
+ - name: conda info
107
+ run: conda info
108
+ - name: conda list
109
+ run: conda list
110
+ - name: bokeh sampledata
111
+ run: bokeh sampledata
112
+ - name: unit tests
113
+ run: pytest -v hvplot --cov=hvplot --cov-append
114
+ - name: unit tests geo
115
+ run: pytest -v hvplot --geo --cov=hvplot --cov-append
116
+ - name: examples tests
117
+ run: pytest -n auto --dist loadscope --nbval-lax -p no:python
118
+ pip_test:
119
+ name: pip tests:${{ matrix.os }}:${{ matrix.python-version }}
120
+ needs: [pre_commit, setup]
121
+ timeout-minutes: 90
122
+ runs-on: ${{ matrix.os }}
123
+ strategy:
124
+ fail-fast: false
125
+ matrix: ${{ fromJson(needs.setup.outputs.matrix) }}
126
+ defaults:
127
+ run:
128
+ shell: bash -l {0}
129
+ steps:
130
+ - uses: actions/checkout@v4
131
+ with:
132
+ fetch-depth: 0
133
+ - uses: actions/setup-python@v5
134
+ with:
135
+ python-version: ${{ matrix.python-version }}
136
+ - name: upgrade pip / setuptools
137
+ run: pip install -U pip setuptools
138
+ - name: install without geo
139
+ # Because cartopy cannot be installed on Python 3.8 on these platforms
140
+ if: matrix.python-version == '3.8' && contains(fromJSON('["ubuntu-latest", "windows-latest"]'), matrix.os)
141
+ run: pip install -ve '.[tests, examples-tests, hvdev]'
142
+ - name: install with geo
143
+ if: matrix.python-version != '3.8' || !contains(fromJSON('["ubuntu-latest", "windows-latest"]'), matrix.os)
144
+ run: pip install -ve '.[tests, examples-tests, geo, hvdev, hvdev-geo]'
145
+ - name: pip list
146
+ run: pip list
147
+ - name: bokeh sampledata
148
+ run: bokeh sampledata
149
+ - name: unit tests
150
+ run: pytest -v hvplot --cov=hvplot --cov-append
151
+ - name: unit tests geo
152
+ run: pytest -v hvplot --geo --cov=hvplot --cov-append
153
+ - name: examples tests
154
+ run: pytest -n auto --dist loadscope --nbval-lax -p no:python
155
+ - name: Upload coverage reports to Codecov
156
+ if: github.event_name == 'push' || github.event_name == 'pull_request'
157
+ uses: codecov/codecov-action@v4
158
+ with:
159
+ fail_ci_if_error: false
160
+ verbose: false
161
+ env:
162
+ CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
@@ -0,0 +1,129 @@
1
+ # Byte-compiled / optimized / DLL files
2
+ __pycache__/
3
+ *.py[cod]
4
+ *$py.class
5
+
6
+ # C extensions
7
+ *.so
8
+
9
+ # Distribution / packaging
10
+ .Python
11
+ env/
12
+ build/
13
+ develop-eggs/
14
+ dist/
15
+ downloads/
16
+ eggs/
17
+ .eggs/
18
+ lib/
19
+ lib64/
20
+ parts/
21
+ sdist/
22
+ var/
23
+ wheels/
24
+ *.egg-info/
25
+ .installed.cfg
26
+ *.egg
27
+
28
+ # PyInstaller
29
+ # Usually these files are written by a python script from a template
30
+ # before PyInstaller builds the exe, so as to inject date/other infos into it.
31
+ *.manifest
32
+ *.spec
33
+
34
+ # Installer logs
35
+ pip-log.txt
36
+ pip-delete-this-directory.txt
37
+
38
+ # Unit test / coverage reports
39
+ htmlcov/
40
+ .tox/
41
+ .coverage
42
+ .coverage.*
43
+ .cache
44
+ nosetests.xml
45
+ coverage.xml
46
+ *.cover
47
+ .hypothesis/
48
+ .pytest_cache
49
+
50
+ # Translations
51
+ *.mo
52
+ *.pot
53
+
54
+ # Django stuff:
55
+ *.log
56
+ local_settings.py
57
+
58
+ # Flask stuff:
59
+ instance/
60
+ .webassets-cache
61
+
62
+ # Scrapy stuff:
63
+ .scrapy
64
+
65
+ # Sphinx documentation
66
+ docs/_build/
67
+
68
+ # PyBuilder
69
+ target/
70
+
71
+ # Jupyter Notebook
72
+ .ipynb_checkpoints
73
+
74
+ # pyenv
75
+ .python-version
76
+
77
+ # celery beat schedule file
78
+ celerybeat-schedule
79
+
80
+ # SageMath parsed files
81
+ *.sage.py
82
+
83
+ # dotenv
84
+ .env
85
+
86
+ # virtualenv
87
+ .venv
88
+ venv/
89
+ ENV/
90
+
91
+ # Spyder project settings
92
+ .spyderproject
93
+ .spyproject
94
+
95
+ # Rope project settings
96
+ .ropeproject
97
+
98
+ # mkdocs documentation
99
+ /site
100
+
101
+ # mypy
102
+ .mypy_cache/
103
+
104
+ # nbsite
105
+ # these files normally shouldn't be checked in as they should be
106
+ # dynamically built from notebooks
107
+ doc/**/*.rst
108
+ doc/**/*.json
109
+ # thumbnails are downloaded on the fly
110
+ doc/reference/*/thumbnails/
111
+ # this dir contains the whole website and should not be checked in on main
112
+ builtdocs/
113
+ # mystnb
114
+ jupyter_execute/
115
+
116
+ # pip
117
+ pip-wheel-metadata/
118
+
119
+ # IDE
120
+ /.vscode
121
+
122
+ # MacOS
123
+ .DS_Store
124
+
125
+ # Examples artefacts
126
+ doc/user_guide/plot.html
127
+
128
+ # setuptools_scm
129
+ hvplot/_version.py
@@ -0,0 +1,47 @@
1
+ # This is the configuration for pre-commit, a local framework for managing pre-commit hooks
2
+ # Check out the docs at: https://pre-commit.com/
3
+
4
+ default_stages: [commit]
5
+ repos:
6
+ - repo: https://github.com/nbQA-dev/nbQA
7
+ rev: 1.8.5
8
+ hooks:
9
+ - id: nbqa-ruff
10
+ additional_dependencies: [ruff==0.3.7]
11
+ - repo: https://github.com/pre-commit/pre-commit-hooks
12
+ rev: v4.6.0
13
+ hooks:
14
+ - id: check-builtin-literals
15
+ - id: check-case-conflict
16
+ - id: check-docstring-first
17
+ - id: check-executables-have-shebangs
18
+ - id: check-toml
19
+ - id: detect-private-key
20
+ - id: end-of-file-fixer
21
+ exclude: (\.min\.js$|\.svg$)
22
+ - id: trailing-whitespace
23
+ - repo: https://github.com/astral-sh/ruff-pre-commit
24
+ rev: v0.3.7
25
+ hooks:
26
+ - id: ruff
27
+ - id: ruff-format
28
+ - repo: https://github.com/hoxbro/clean_notebook
29
+ rev: v0.1.14
30
+ hooks:
31
+ - id: clean-notebook
32
+ - repo: https://github.com/codespell-project/codespell
33
+ rev: v2.2.6
34
+ hooks:
35
+ - id: codespell
36
+ exclude: (\.min\.js$|\.svg$|\.html$)
37
+ additional_dependencies:
38
+ - tomli
39
+ - repo: local
40
+ hooks:
41
+ - id: update_conda_envs
42
+ name: Update conda envs
43
+ entry: python scripts/update_conda_envs.py
44
+ language: python
45
+ additional_dependencies: [pyproject2conda]
46
+ files: '(pyproject.toml|update_conda_envs)'
47
+ pass_filenames: false
@@ -0,0 +1,3 @@
1
+ # Changelog
2
+
3
+ For the release notes, please consult ./doc/releases.md
@@ -0,0 +1,5 @@
1
+ # Code of Conduct
2
+
3
+ For the code of conduct, see [HoloViz/HoloViz - CODE_OF_CONDUCT.md](https://github.com/holoviz/holoviz/blob/hvplot-gov/CODE_OF_CONDUCT.md).
4
+
5
+ The hvPlot Project’s equivalently named documents take precedence over any external materials referenced within this linked document above.