hvplot 0.9.2rc1__tar.gz → 0.9.3a1__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 (266) hide show
  1. hvplot-0.9.3a1/.git_archival.txt +4 -0
  2. hvplot-0.9.3a1/.gitattributes +5 -0
  3. hvplot-0.9.3a1/.github/FUNDING.yml +3 -0
  4. hvplot-0.9.3a1/.github/workflows/build.yaml +75 -0
  5. hvplot-0.9.3a1/.github/workflows/docs.yaml +124 -0
  6. hvplot-0.9.3a1/.github/workflows/test.yaml +157 -0
  7. hvplot-0.9.3a1/.gitignore +129 -0
  8. hvplot-0.9.3a1/.pre-commit-config.yaml +47 -0
  9. hvplot-0.9.3a1/CHANGELOG.md +3 -0
  10. hvplot-0.9.3a1/CODE_OF_CONDUCT.md +5 -0
  11. {hvplot-0.9.2rc1/hvplot.egg-info → hvplot-0.9.3a1}/PKG-INFO +64 -184
  12. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/README.md +2 -1
  13. hvplot-0.9.3a1/binder/environment.yml +36 -0
  14. hvplot-0.9.3a1/binder/postBuild +1 -0
  15. hvplot-0.9.3a1/conda.recipe/meta.yaml +56 -0
  16. hvplot-0.9.3a1/doc/_static/custom.css +22 -0
  17. hvplot-0.9.3a1/doc/_static/favicon.ico +0 -0
  18. hvplot-0.9.3a1/doc/_static/home/bokeh.gif +0 -0
  19. hvplot-0.9.3a1/doc/_static/home/dask.gif +0 -0
  20. hvplot-0.9.3a1/doc/_static/home/explorer.gif +0 -0
  21. hvplot-0.9.3a1/doc/_static/home/geo.gif +0 -0
  22. hvplot-0.9.3a1/doc/_static/home/geopandas.gif +0 -0
  23. hvplot-0.9.3a1/doc/_static/home/intake.gif +0 -0
  24. hvplot-0.9.3a1/doc/_static/home/interactive_hvplot.gif +0 -0
  25. hvplot-0.9.3a1/doc/_static/home/interactive_pandas.gif +0 -0
  26. hvplot-0.9.3a1/doc/_static/home/interactive_xarray.gif +0 -0
  27. hvplot-0.9.3a1/doc/_static/home/large_data.gif +0 -0
  28. hvplot-0.9.3a1/doc/_static/home/layout.gif +0 -0
  29. hvplot-0.9.3a1/doc/_static/home/matplotlib.png +0 -0
  30. hvplot-0.9.3a1/doc/_static/home/networkx.gif +0 -0
  31. hvplot-0.9.3a1/doc/_static/home/overlay.png +0 -0
  32. hvplot-0.9.3a1/doc/_static/home/pandas.gif +0 -0
  33. hvplot-0.9.3a1/doc/_static/home/plotly.gif +0 -0
  34. hvplot-0.9.3a1/doc/_static/home/widgets.gif +0 -0
  35. hvplot-0.9.3a1/doc/_static/home/xarray.gif +0 -0
  36. hvplot-0.9.3a1/doc/_static/images/heat_and_trees.png +0 -0
  37. hvplot-0.9.3a1/doc/_static/images/portfolio.png +0 -0
  38. hvplot-0.9.3a1/doc/_static/logo.png +0 -0
  39. hvplot-0.9.3a1/doc/_static/logo_horizontal.svg +233 -0
  40. hvplot-0.9.3a1/doc/_static/logo_stacked.svg +238 -0
  41. hvplot-0.9.3a1/doc/about.md +9 -0
  42. hvplot-0.9.3a1/doc/assets/diagram.svg +2075 -0
  43. hvplot-0.9.3a1/doc/assets/streamz_demo.gif +0 -0
  44. hvplot-0.9.3a1/doc/conf.py +129 -0
  45. hvplot-0.9.3a1/doc/conftest.py +44 -0
  46. hvplot-0.9.3a1/doc/developer_guide/index.md +176 -0
  47. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/getting_started/explorer.ipynb +8 -0
  48. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/getting_started/hvplot.ipynb +8 -0
  49. hvplot-0.9.3a1/doc/getting_started/index.md +64 -0
  50. hvplot-0.9.3a1/doc/getting_started/installation.md +23 -0
  51. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/getting_started/interactive.ipynb +8 -0
  52. hvplot-0.9.3a1/doc/governance/project-docs/CONTRIBUTING.md +5 -0
  53. hvplot-0.9.3a1/doc/governance/project-docs/GOVERNANCE.md +10 -0
  54. hvplot-0.9.3a1/doc/governance/project-docs/LICENSE.md +3 -0
  55. hvplot-0.9.3a1/doc/governance/project-docs/MEMBERS.md +14 -0
  56. hvplot-0.9.3a1/doc/index.md +413 -0
  57. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/geopandas/points.ipynb +7 -0
  58. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/geopandas/polygons.ipynb +7 -0
  59. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/tabular/andrewscurves.ipynb +8 -0
  60. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/tabular/area.ipynb +12 -2
  61. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/tabular/bar.ipynb +7 -0
  62. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/tabular/barh.ipynb +7 -0
  63. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/tabular/bivariate.ipynb +7 -0
  64. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/tabular/box.ipynb +8 -1
  65. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/tabular/errorbars.ipynb +8 -1
  66. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/tabular/heatmap.ipynb +7 -0
  67. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/tabular/hexbin.ipynb +8 -1
  68. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/tabular/hist.ipynb +7 -0
  69. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/tabular/kde.ipynb +7 -0
  70. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/tabular/labels.ipynb +8 -1
  71. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/tabular/lagplot.ipynb +8 -0
  72. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/tabular/line.ipynb +7 -0
  73. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/tabular/ohlc.ipynb +7 -0
  74. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/tabular/parallelcoordinates.ipynb +8 -0
  75. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/tabular/scatter.ipynb +7 -0
  76. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/tabular/scattermatrix.ipynb +8 -0
  77. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/tabular/step.ipynb +8 -1
  78. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/tabular/table.ipynb +8 -1
  79. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/tabular/violin.ipynb +8 -1
  80. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/xarray/bar.ipynb +8 -0
  81. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/xarray/contour.ipynb +7 -0
  82. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/xarray/contourf.ipynb +7 -0
  83. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/xarray/hist.ipynb +7 -0
  84. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/xarray/image.ipynb +7 -0
  85. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/xarray/kde.ipynb +8 -0
  86. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/xarray/line.ipynb +7 -0
  87. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/reference/xarray/quadmesh.ipynb +8 -1
  88. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/xarray/rgb.ipynb +8 -1
  89. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/xarray/vectorfield.ipynb +8 -1
  90. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/reference/xarray/violin.ipynb +8 -0
  91. hvplot-0.9.3a1/doc/releases.md +485 -0
  92. hvplot-0.9.3a1/doc/roadmap.md +92 -0
  93. hvplot-0.9.3a1/doc/topics.md +36 -0
  94. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/user_guide/Customization.ipynb +19 -1
  95. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/user_guide/Explorer.ipynb +8 -0
  96. hvplot-0.9.3a1/doc/user_guide/Geographic_Data.ipynb +435 -0
  97. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/user_guide/Gridded_Data.ipynb +7 -0
  98. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/user_guide/Integrations.ipynb +8 -0
  99. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/user_guide/Interactive.ipynb +7 -0
  100. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/user_guide/Introduction.ipynb +7 -0
  101. hvplot-0.9.3a1/doc/user_guide/Large_Timeseries.ipynb +462 -0
  102. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/user_guide/NetworkX.ipynb +7 -0
  103. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/user_guide/Pandas_API.ipynb +9 -1
  104. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/user_guide/Plotting.ipynb +8 -1
  105. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/user_guide/Plotting_Extensions.ipynb +8 -0
  106. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/user_guide/Plotting_with_Matplotlib.ipynb +8 -1
  107. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/user_guide/Plotting_with_Plotly.ipynb +8 -1
  108. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/user_guide/Statistical_Plots.ipynb +7 -0
  109. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/user_guide/Streaming.ipynb +7 -0
  110. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/user_guide/Subplots.ipynb +7 -0
  111. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/user_guide/Timeseries_Data.ipynb +9 -13
  112. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/user_guide/Viewing.ipynb +7 -0
  113. {hvplot-0.9.2rc1/hvplot/examples → hvplot-0.9.3a1/doc}/user_guide/Widgets.ipynb +7 -0
  114. hvplot-0.9.3a1/doc/user_guide/index.md +103 -0
  115. hvplot-0.9.3a1/envs/py3.10-tests.yaml +71 -0
  116. hvplot-0.9.3a1/envs/py3.11-docs.yaml +62 -0
  117. hvplot-0.9.3a1/envs/py3.11-tests.yaml +71 -0
  118. hvplot-0.9.3a1/envs/py3.12-tests.yaml +71 -0
  119. hvplot-0.9.3a1/envs/py3.8-tests.yaml +71 -0
  120. hvplot-0.9.3a1/envs/py3.9-tests.yaml +71 -0
  121. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/__init__.py +77 -23
  122. hvplot-0.9.3a1/hvplot/_version.py +16 -0
  123. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/backend_transforms.py +13 -12
  124. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/converter.py +912 -418
  125. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/cudf.py +6 -5
  126. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/dask.py +7 -6
  127. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/fugue.py +6 -4
  128. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/ibis.py +5 -4
  129. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/intake.py +10 -6
  130. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/interactive.py +122 -32
  131. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/networkx.py +39 -20
  132. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/pandas.py +10 -6
  133. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/plotting/__init__.py +9 -7
  134. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/plotting/andrews_curves.py +31 -13
  135. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/plotting/core.py +115 -117
  136. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/plotting/lag_plot.py +2 -3
  137. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/plotting/parallel_coordinates.py +26 -11
  138. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/plotting/scatter_matrix.py +49 -35
  139. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/polars.py +4 -3
  140. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/sample_data.py +3 -6
  141. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/streamz.py +5 -3
  142. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/conftest.py +16 -9
  143. hvplot-0.9.3a1/hvplot/tests/data/README.md +5 -0
  144. hvplot-0.9.3a1/hvplot/tests/data/RGB-red.byte.tif +0 -0
  145. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/plotting/testcore.py +30 -24
  146. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/plotting/testohlc.py +5 -2
  147. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/plotting/testscattermatrix.py +3 -4
  148. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/test_links.py +19 -19
  149. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testbackend_transforms.py +7 -5
  150. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testcharts.py +134 -68
  151. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testfugue.py +4 -4
  152. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testgeo.py +95 -47
  153. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testgeowithoutgv.py +11 -1
  154. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testgridplots.py +47 -33
  155. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testhelp.py +13 -4
  156. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testinteractive.py +111 -98
  157. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testnetworkx.py +2 -2
  158. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testoperations.py +101 -37
  159. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testoptions.py +94 -44
  160. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testoverrides.py +4 -5
  161. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testpanel.py +6 -5
  162. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testpatch.py +26 -18
  163. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testplotting.py +9 -12
  164. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/teststreaming.py +2 -2
  165. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testtransforms.py +10 -15
  166. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testui.py +40 -49
  167. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testutil.py +73 -65
  168. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/util.py +10 -13
  169. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/ui.py +204 -133
  170. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/util.py +111 -50
  171. hvplot-0.9.3a1/hvplot/utilities.py +129 -0
  172. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/xarray.py +6 -5
  173. {hvplot-0.9.2rc1 → hvplot-0.9.3a1/hvplot.egg-info}/PKG-INFO +64 -184
  174. hvplot-0.9.3a1/hvplot.egg-info/SOURCES.txt +190 -0
  175. hvplot-0.9.3a1/hvplot.egg-info/requires.txt +91 -0
  176. hvplot-0.9.3a1/pyproject.toml +210 -0
  177. hvplot-0.9.3a1/scripts/update_conda_envs.py +27 -0
  178. hvplot-0.9.3a1/setup.cfg +4 -0
  179. hvplot-0.9.2rc1/MANIFEST.in +0 -9
  180. hvplot-0.9.2rc1/examples/conftest.py +0 -1
  181. hvplot-0.9.2rc1/examples/getting_started/explorer.ipynb +0 -139
  182. hvplot-0.9.2rc1/examples/getting_started/interactive.ipynb +0 -185
  183. hvplot-0.9.2rc1/examples/reference/tabular/andrewscurves.ipynb +0 -74
  184. hvplot-0.9.2rc1/examples/reference/tabular/bar.ipynb +0 -266
  185. hvplot-0.9.2rc1/examples/reference/tabular/barh.ipynb +0 -49
  186. hvplot-0.9.2rc1/examples/reference/tabular/box.ipynb +0 -81
  187. hvplot-0.9.2rc1/examples/reference/tabular/heatmap.ipynb +0 -95
  188. hvplot-0.9.2rc1/examples/reference/tabular/hist.ipynb +0 -115
  189. hvplot-0.9.2rc1/examples/reference/tabular/kde.ipynb +0 -84
  190. hvplot-0.9.2rc1/examples/reference/tabular/ohlc.ipynb +0 -103
  191. hvplot-0.9.2rc1/examples/reference/tabular/scatter.ipynb +0 -74
  192. hvplot-0.9.2rc1/examples/reference/tabular/scattermatrix.ipynb +0 -186
  193. hvplot-0.9.2rc1/examples/reference/tabular/table.ipynb +0 -55
  194. hvplot-0.9.2rc1/examples/reference/tabular/violin.ipynb +0 -50
  195. hvplot-0.9.2rc1/examples/reference/xarray/contourf.ipynb +0 -83
  196. hvplot-0.9.2rc1/examples/reference/xarray/hist.ipynb +0 -66
  197. hvplot-0.9.2rc1/examples/reference/xarray/kde.ipynb +0 -53
  198. hvplot-0.9.2rc1/examples/reference/xarray/quadmesh.ipynb +0 -65
  199. hvplot-0.9.2rc1/examples/user_guide/Customization.ipynb +0 -246
  200. hvplot-0.9.2rc1/examples/user_guide/Explorer.ipynb +0 -331
  201. hvplot-0.9.2rc1/examples/user_guide/Geographic_Data.ipynb +0 -280
  202. hvplot-0.9.2rc1/examples/user_guide/Integrations.ipynb +0 -581
  203. hvplot-0.9.2rc1/examples/user_guide/Interactive.ipynb +0 -451
  204. hvplot-0.9.2rc1/examples/user_guide/Pandas_API.ipynb +0 -1175
  205. hvplot-0.9.2rc1/examples/user_guide/Plotting_Extensions.ipynb +0 -242
  206. hvplot-0.9.2rc1/examples/user_guide/Plotting_with_Matplotlib.ipynb +0 -683
  207. hvplot-0.9.2rc1/examples/user_guide/Statistical_Plots.ipynb +0 -140
  208. hvplot-0.9.2rc1/examples/user_guide/Timeseries_Data.ipynb +0 -220
  209. hvplot-0.9.2rc1/examples/user_guide/Widgets.ipynb +0 -177
  210. hvplot-0.9.2rc1/hvplot/.version +0 -1
  211. hvplot-0.9.2rc1/hvplot/examples/assets/console.png +0 -0
  212. hvplot-0.9.2rc1/hvplot/examples/assets/console_server.gif +0 -0
  213. hvplot-0.9.2rc1/hvplot/examples/assets/diagram.png +0 -0
  214. hvplot-0.9.2rc1/hvplot/examples/assets/hvplot-wm.png +0 -0
  215. hvplot-0.9.2rc1/hvplot/examples/conftest.py +0 -1
  216. hvplot-0.9.2rc1/hvplot/examples/data/crime.csv +0 -56
  217. hvplot-0.9.2rc1/hvplot/examples/datasets.yaml +0 -48
  218. hvplot-0.9.2rc1/hvplot/examples/getting_started/hvplot.ipynb +0 -424
  219. hvplot-0.9.2rc1/hvplot/examples/reference/geopandas/points.ipynb +0 -90
  220. hvplot-0.9.2rc1/hvplot/examples/reference/geopandas/polygons.ipynb +0 -81
  221. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/area.ipynb +0 -119
  222. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/bivariate.ipynb +0 -48
  223. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/errorbars.ipynb +0 -74
  224. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/hexbin.ipynb +0 -51
  225. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/labels.ipynb +0 -72
  226. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/lagplot.ipynb +0 -72
  227. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/line.ipynb +0 -48
  228. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/parallelcoordinates.ipynb +0 -68
  229. hvplot-0.9.2rc1/hvplot/examples/reference/tabular/step.ipynb +0 -48
  230. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/bar.ipynb +0 -76
  231. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/contour.ipynb +0 -85
  232. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/image.ipynb +0 -102
  233. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/line.ipynb +0 -66
  234. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/rgb.ipynb +0 -56
  235. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/vectorfield.ipynb +0 -119
  236. hvplot-0.9.2rc1/hvplot/examples/reference/xarray/violin.ipynb +0 -53
  237. hvplot-0.9.2rc1/hvplot/examples/user_guide/Geographic_Data.ipynb +0 -280
  238. hvplot-0.9.2rc1/hvplot/examples/user_guide/Gridded_Data.ipynb +0 -297
  239. hvplot-0.9.2rc1/hvplot/examples/user_guide/Introduction.ipynb +0 -206
  240. hvplot-0.9.2rc1/hvplot/examples/user_guide/NetworkX.ipynb +0 -759
  241. hvplot-0.9.2rc1/hvplot/examples/user_guide/Plotting.ipynb +0 -652
  242. hvplot-0.9.2rc1/hvplot/examples/user_guide/Plotting_with_Plotly.ipynb +0 -681
  243. hvplot-0.9.2rc1/hvplot/examples/user_guide/Streaming.ipynb +0 -245
  244. hvplot-0.9.2rc1/hvplot/examples/user_guide/Subplots.ipynb +0 -142
  245. hvplot-0.9.2rc1/hvplot/examples/user_guide/Viewing.ipynb +0 -197
  246. hvplot-0.9.2rc1/hvplot/examples/user_guide/images/simple.svg +0 -59
  247. hvplot-0.9.2rc1/hvplot/utilities.py +0 -62
  248. hvplot-0.9.2rc1/hvplot.egg-info/SOURCES.txt +0 -193
  249. hvplot-0.9.2rc1/hvplot.egg-info/requires.txt +0 -207
  250. hvplot-0.9.2rc1/pyproject.toml +0 -32
  251. hvplot-0.9.2rc1/setup.cfg +0 -12
  252. hvplot-0.9.2rc1/setup.py +0 -184
  253. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/LICENSE +0 -0
  254. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/assets/console.png +0 -0
  255. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/assets/console_server.gif +0 -0
  256. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/assets/diagram.png +0 -0
  257. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/assets/hvplot-wm.png +0 -0
  258. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/doc}/user_guide/images/simple.svg +0 -0
  259. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/hvplot}/data/crime.csv +0 -0
  260. {hvplot-0.9.2rc1/examples → hvplot-0.9.3a1/hvplot}/datasets.yaml +0 -0
  261. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/__init__.py +0 -0
  262. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/plotting/__init__.py +0 -0
  263. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot/tests/testibis.py +0 -0
  264. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot.egg-info/dependency_links.txt +0 -0
  265. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot.egg-info/entry_points.txt +0 -0
  266. {hvplot-0.9.2rc1 → hvplot-0.9.3a1}/hvplot.egg-info/top_level.txt +0 -0
@@ -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
+ # 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,157 @@
1
+ name: tests
2
+ on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
+ branches:
8
+ - '*'
9
+ workflow_dispatch:
10
+ inputs:
11
+ target:
12
+ description: "How much of the test suite to run"
13
+ type: choice
14
+ default: default
15
+ options:
16
+ - default
17
+ - full
18
+ - downstream
19
+ cache:
20
+ description: "Use cache"
21
+ type: boolean
22
+ default: true
23
+ schedule:
24
+ - cron: '0 15 * * SUN'
25
+
26
+ concurrency:
27
+ group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
28
+ cancel-in-progress: true
29
+
30
+ jobs:
31
+ pre_commit:
32
+ name: Run pre-commit
33
+ runs-on: 'ubuntu-latest'
34
+ steps:
35
+ - uses: holoviz-dev/holoviz_tasks/pre-commit@v0.1a19
36
+ setup:
37
+ name: Setup workflow
38
+ runs-on: ubuntu-latest
39
+ outputs:
40
+ matrix: ${{ env.MATRIX }}
41
+ matrix_option: ${{ env.MATRIX_OPTION }}
42
+ steps:
43
+ - name: Set matrix option
44
+ run: |
45
+ if [[ '${{ github.event_name }}' == 'workflow_dispatch' ]]; then
46
+ OPTION=${{ github.event.inputs.target }}
47
+ elif [[ '${{ github.event_name }}' == 'schedule' ]]; then
48
+ OPTION="full"
49
+ elif [[ '${{ github.event_name }}' == 'push' && '${{ github.ref_type }}' == 'tag' ]]; then
50
+ OPTION="full"
51
+ else
52
+ OPTION="default"
53
+ fi
54
+ echo "MATRIX_OPTION=$OPTION" >> $GITHUB_ENV
55
+ - name: Set test matrix with 'default' option
56
+ if: env.MATRIX_OPTION == 'default'
57
+ run: |
58
+ MATRIX=$(jq -nsc '{
59
+ "os": ["ubuntu-latest", "macos-latest", "windows-latest"],
60
+ "python-version": ["3.8", "3.12"]
61
+ }')
62
+ echo "MATRIX=$MATRIX" >> $GITHUB_ENV
63
+ - name: Set test matrix with 'full' option
64
+ if: env.MATRIX_OPTION == 'full'
65
+ run: |
66
+ MATRIX=$(jq -nsc '{
67
+ "os": ["ubuntu-latest", "macos-latest", "windows-latest"],
68
+ "python-version": ["3.8", "3.9", "3.10", "3.11", "3.12"]
69
+ }')
70
+ echo "MATRIX=$MATRIX" >> $GITHUB_ENV
71
+ - name: Set test matrix with 'downstream' option
72
+ if: env.MATRIX_OPTION == 'downstream'
73
+ run: |
74
+ MATRIX=$(jq -nsc '{
75
+ "os": ["ubuntu-latest"],
76
+ "python-version": ["3.12"]
77
+ }')
78
+ echo "MATRIX=$MATRIX" >> $GITHUB_ENV
79
+
80
+ conda_suite:
81
+ name: conda tests:${{ matrix.os }}:${{ matrix.python-version }}
82
+ needs: [pre_commit, setup]
83
+ if: needs.setup.outputs.matrix_option != 'default'
84
+ runs-on: ${{ matrix.os }}
85
+ strategy:
86
+ fail-fast: false
87
+ matrix: ${{ fromJson(needs.setup.outputs.matrix) }}
88
+ timeout-minutes: 90
89
+ defaults:
90
+ run:
91
+ shell: bash -el {0}
92
+ steps:
93
+ - uses: actions/checkout@v4
94
+ with:
95
+ fetch-depth: 0
96
+ - uses: conda-incubator/setup-miniconda@v3
97
+ with:
98
+ auto-update-conda: true
99
+ environment-file: envs/py${{ matrix.python-version }}-tests.yaml
100
+ activate-environment: hvplottests
101
+ - name: conda info
102
+ run: conda info
103
+ - name: conda list
104
+ run: conda list
105
+ - name: bokeh sampledata
106
+ run: bokeh sampledata
107
+ - name: unit tests
108
+ run: pytest -v hvplot --cov=hvplot --cov-append
109
+ - name: unit tests geo
110
+ run: pytest -v hvplot --geo --cov=hvplot --cov-append
111
+ - name: examples tests
112
+ run: pytest -n auto --dist loadscope --nbval-lax -p no:python
113
+ pip_test:
114
+ name: pip tests:${{ matrix.os }}:${{ matrix.python-version }}
115
+ needs: [pre_commit, setup]
116
+ timeout-minutes: 90
117
+ runs-on: ${{ matrix.os }}
118
+ strategy:
119
+ fail-fast: false
120
+ matrix: ${{ fromJson(needs.setup.outputs.matrix) }}
121
+ defaults:
122
+ run:
123
+ shell: bash -l {0}
124
+ steps:
125
+ - uses: actions/checkout@v4
126
+ with:
127
+ fetch-depth: 0
128
+ - uses: actions/setup-python@v5
129
+ with:
130
+ python-version: ${{ matrix.python-version }}
131
+ - name: upgrade pip / setuptools
132
+ run: pip install -U pip setuptools
133
+ - name: install without geo
134
+ # Because cartopy cannot be installed on Python 3.8 on these platforms
135
+ if: matrix.python-version == '3.8' && contains(fromJSON('["ubuntu-latest", "windows-latest"]'), matrix.os)
136
+ run: pip install -ve '.[tests, examples-tests, hvdev]'
137
+ - name: install with geo
138
+ if: matrix.python-version != '3.8' || !contains(fromJSON('["ubuntu-latest", "windows-latest"]'), matrix.os)
139
+ run: pip install -ve '.[tests, examples-tests, geo, hvdev, hvdev-geo]'
140
+ - name: pip list
141
+ run: pip list
142
+ - name: bokeh sampledata
143
+ run: bokeh sampledata
144
+ - name: unit tests
145
+ run: pytest -v hvplot --cov=hvplot --cov-append
146
+ - name: unit tests geo
147
+ run: pytest -v hvplot --geo --cov=hvplot --cov-append
148
+ - name: examples tests
149
+ run: pytest -n auto --dist loadscope --nbval-lax -p no:python
150
+ - name: Upload coverage reports to Codecov
151
+ if: github.event_name == 'push' || github.event_name == 'pull_request'
152
+ uses: codecov/codecov-action@v4
153
+ with:
154
+ fail_ci_if_error: false
155
+ verbose: false
156
+ env:
157
+ 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.