perspective-python 3.0.0rc1__tar.gz → 3.0.0rc2__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 (509) hide show
  1. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/Cargo.lock +7 -7
  2. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/PKG-INFO +1 -2
  3. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/__init__.py +3 -2
  4. {perspective_python-3.0.0rc1/rust/perspective-python → perspective_python-3.0.0rc2}/perspective/handlers/__init__.py +3 -3
  5. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/conftest.py +24 -20
  6. {perspective_python-3.0.0rc1/rust/perspective-python → perspective_python-3.0.0rc2}/perspective/tests/core/test_async.py +1 -24
  7. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/server/test_server.py +1 -5
  8. {perspective_python-3.0.0rc1/rust/perspective-python → perspective_python-3.0.0rc2}/perspective/tests/table/test_table.py +6 -4
  9. {perspective_python-3.0.0rc1/rust/perspective-python → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_datetime.py +1 -1
  10. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_infer.py +1 -1
  11. {perspective_python-3.0.0rc1/rust/perspective-python → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_limit.py +0 -2
  12. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_to_arrow.py +4 -1
  13. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_to_arrow_lz4.py +0 -1
  14. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_view.py +0 -1
  15. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_view_expression.py +4 -4
  16. {perspective_python-3.0.0rc1/rust/perspective-python → perspective_python-3.0.0rc2}/perspective/tests/viewer/test_validate.py +0 -1
  17. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/widget/widget.py +4 -4
  18. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/pyproject.toml +2 -3
  19. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/Cargo.toml +1 -1
  20. perspective_python-3.0.0rc2/rust/perspective-client/docs/client/system_info.md +1 -0
  21. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/client/table.md +2 -2
  22. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/client.md +2 -2
  23. perspective_python-3.0.0rc2/rust/perspective-client/docs/table/get_client.md +1 -0
  24. perspective_python-3.0.0rc2/rust/perspective-client/docs/table/get_features.md +2 -0
  25. perspective_python-3.0.0rc2/rust/perspective-client/docs/view/get_config.md +1 -0
  26. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/view.rs +3 -3
  27. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/Cargo.toml +3 -4
  28. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/server/new_api.py +0 -2
  29. perspective_python-3.0.0rc2/rust/perspective-python/docs/client/system_info.md +1 -0
  30. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/client/table.md +2 -2
  31. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/client.md +2 -2
  32. perspective_python-3.0.0rc2/rust/perspective-python/docs/table/get_client.md +1 -0
  33. perspective_python-3.0.0rc2/rust/perspective-python/docs/table/get_features.md +2 -0
  34. perspective_python-3.0.0rc2/rust/perspective-python/docs/view/get_config.md +1 -0
  35. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/__init__.py +3 -2
  36. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2/rust/perspective-python}/perspective/handlers/__init__.py +3 -3
  37. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/conftest.py +24 -20
  38. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2/rust/perspective-python}/perspective/tests/core/test_async.py +1 -24
  39. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/server/test_server.py +1 -5
  40. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2/rust/perspective-python}/perspective/tests/table/test_table.py +6 -4
  41. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2/rust/perspective-python}/perspective/tests/table/test_table_datetime.py +1 -1
  42. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_table_infer.py +1 -1
  43. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2/rust/perspective-python}/perspective/tests/table/test_table_limit.py +0 -2
  44. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_to_arrow.py +4 -1
  45. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_to_arrow_lz4.py +0 -1
  46. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_view.py +0 -1
  47. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_view_expression.py +4 -4
  48. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2/rust/perspective-python}/perspective/tests/viewer/test_validate.py +0 -1
  49. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/widget/widget.py +4 -4
  50. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/Cargo.toml +2 -2
  51. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/build.rs +4 -1
  52. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/package.json +1 -1
  53. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/sparse_tree.cpp +39 -30
  54. {perspective.data → perspective_python-3.0.0rc2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/package.json +5 -6
  55. perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.62664683b16e6812e453.js +18 -0
  56. perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.2d936c1eb55465604308.js → perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.18d5d740c252bde12d73.js +1 -1
  57. perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.d2836dfacdf59284d040.js +0 -18
  58. perspective_python-3.0.0rc1/perspective/tests/table/test_update_numpy.py +0 -252
  59. perspective_python-3.0.0rc1/rust/perspective-client/docs/client/system_info.md +0 -1
  60. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_client.md +0 -0
  61. perspective_python-3.0.0rc1/rust/perspective-client/docs/table/get_features.md +0 -0
  62. perspective_python-3.0.0rc1/rust/perspective-client/docs/view/get_config.md +0 -1
  63. perspective_python-3.0.0rc1/rust/perspective-python/docs/client/system_info.md +0 -1
  64. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_client.md +0 -0
  65. perspective_python-3.0.0rc1/rust/perspective-python/docs/table/get_features.md +0 -0
  66. perspective_python-3.0.0rc1/rust/perspective-python/docs/view/get_config.md +0 -1
  67. perspective_python-3.0.0rc1/rust/perspective-python/perspective/tests/table/test_update_numpy.py +0 -252
  68. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/Cargo.toml +0 -0
  69. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/extension/finos-perspective-nbextension.json +0 -0
  70. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/handlers/aiohttp.py +0 -0
  71. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/handlers/starlette.py +0 -0
  72. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/handlers/tornado.py +0 -0
  73. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/templates/exported_widget.html.jinja +0 -0
  74. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/__init__.py +0 -0
  75. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/core/__init__.py +0 -0
  76. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/core/test_threadpool.py +0 -0
  77. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/server/__init__.py +0 -0
  78. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/server/test_session.py +0 -0
  79. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/single_threaded/test_single_threaded.py +0 -0
  80. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/__init__.py +0 -0
  81. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/date32.arrow +0 -0
  82. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/date64.arrow +0 -0
  83. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/dict.arrow +0 -0
  84. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/dict_update.arrow +0 -0
  85. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/int_float_str.arrow +0 -0
  86. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/int_float_str_file.arrow +0 -0
  87. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/arrow/int_float_str_update.arrow +0 -0
  88. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/object_sequence.py +0 -0
  89. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_delete.py +0 -0
  90. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_exception.py +0 -0
  91. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_leaks.py +0 -0
  92. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_ports.py +0 -0
  93. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_remove.py +0 -0
  94. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_arrow.py +0 -0
  95. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_numpy.py +0 -0
  96. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_table_pandas.py +0 -0
  97. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_to_format.py +0 -0
  98. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_update.py +0 -0
  99. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_update_arrow.py +0 -0
  100. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/table/test_update_pandas.py +0 -0
  101. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/viewer/__init__.py +0 -0
  102. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/viewer/test_viewer.py +0 -0
  103. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/widget/__init__.py +0 -0
  104. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/widget/test_widget.py +0 -0
  105. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/tests/widget/test_widget_pandas.py +0 -0
  106. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/viewer/__init__.py +0 -0
  107. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/viewer/validate.py +0 -0
  108. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/viewer/viewer.py +0 -0
  109. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/viewer/viewer_traitlets.py +0 -0
  110. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/perspective/widget/__init__.py +0 -0
  111. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/build.rs +0 -0
  112. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/client/get_hosted_table_names.md +0 -0
  113. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/client/open_table.md +0 -0
  114. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/client/set_loop_callback.md +0 -0
  115. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/client/terminate.md +0 -0
  116. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/clear.md +0 -0
  117. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/columns.md +0 -0
  118. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/delete.md +0 -0
  119. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/get_index.md +0 -0
  120. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/get_limit.md +0 -0
  121. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/get_num_views.md +0 -0
  122. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/make_port.md +0 -0
  123. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/on_delete.md +0 -0
  124. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/remove.md +0 -0
  125. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/remove_delete.md +0 -0
  126. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/replace.md +0 -0
  127. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/schema.md +0 -0
  128. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/size.md +0 -0
  129. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/update.md +0 -0
  130. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/validate_expressions.md +0 -0
  131. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table/view.md +0 -0
  132. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/table.md +0 -0
  133. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/collapse.md +0 -0
  134. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/column_paths.md +0 -0
  135. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/delete.md +0 -0
  136. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/dimensions.md +0 -0
  137. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/expand.md +0 -0
  138. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/expression_schema.md +0 -0
  139. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/get_min_max.md +0 -0
  140. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/num_columns.md +0 -0
  141. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/num_rows.md +0 -0
  142. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/on_delete.md +0 -0
  143. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/on_update.md +0 -0
  144. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/remove_delete.md +0 -0
  145. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/remove_update.md +0 -0
  146. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/schema.md +0 -0
  147. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/set_depth.md +0 -0
  148. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/to_arrow.md +0 -0
  149. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/to_columns.md +0 -0
  150. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/to_columns_string.md +0 -0
  151. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/to_csv.md +0 -0
  152. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/to_json.md +0 -0
  153. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view/to_json_string.md +0 -0
  154. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/docs/view.md +0 -0
  155. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/client.rs +0 -0
  156. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/aggregates.rs +0 -0
  157. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/column_type.rs +0 -0
  158. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/expressions.rs +0 -0
  159. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/filters.rs +0 -0
  160. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/mod.rs +0 -0
  161. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/plugin.rs +0 -0
  162. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/sort.rs +0 -0
  163. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/config/view_config.rs +0 -0
  164. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/lib.rs +0 -0
  165. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/proto.rs +0 -0
  166. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/session.rs +0 -0
  167. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/table.rs +0 -0
  168. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/table_data.rs +0 -0
  169. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/utils/clone.rs +0 -0
  170. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/utils/logging.rs +0 -0
  171. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/utils/mod.rs +0 -0
  172. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/utils/tests/clone.rs +0 -0
  173. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-client/src/rust/utils/tests/mod.rs +0 -0
  174. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/__init__.py +0 -0
  175. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/runtime/__init__.py +0 -0
  176. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/runtime/bench.py +0 -0
  177. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/runtime/perspective_benchmark.py +0 -0
  178. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/runtime/run_perspective_benchmark.py +0 -0
  179. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/__init__.py +0 -0
  180. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/async_server.py +0 -0
  181. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/bench.py +0 -0
  182. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/distributed_mode.py +0 -0
  183. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/server/old_api.py +0 -0
  184. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/bench/tornado/server_mode.py +0 -0
  185. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/client/get_hosted_table_names.md +0 -0
  186. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/client/open_table.md +0 -0
  187. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/client/set_loop_callback.md +0 -0
  188. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/client/terminate.md +0 -0
  189. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/clear.md +0 -0
  190. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/columns.md +0 -0
  191. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/delete.md +0 -0
  192. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/get_index.md +0 -0
  193. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/get_limit.md +0 -0
  194. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/get_num_views.md +0 -0
  195. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/make_port.md +0 -0
  196. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/on_delete.md +0 -0
  197. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/remove.md +0 -0
  198. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/remove_delete.md +0 -0
  199. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/replace.md +0 -0
  200. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/schema.md +0 -0
  201. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/size.md +0 -0
  202. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/update.md +0 -0
  203. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/validate_expressions.md +0 -0
  204. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table/view.md +0 -0
  205. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/table.md +0 -0
  206. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/collapse.md +0 -0
  207. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/column_paths.md +0 -0
  208. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/delete.md +0 -0
  209. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/dimensions.md +0 -0
  210. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/expand.md +0 -0
  211. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/expression_schema.md +0 -0
  212. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/get_min_max.md +0 -0
  213. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/num_columns.md +0 -0
  214. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/num_rows.md +0 -0
  215. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/on_delete.md +0 -0
  216. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/on_update.md +0 -0
  217. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/remove_delete.md +0 -0
  218. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/remove_update.md +0 -0
  219. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/schema.md +0 -0
  220. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/set_depth.md +0 -0
  221. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/to_arrow.md +0 -0
  222. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/to_columns.md +0 -0
  223. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/to_columns_string.md +0 -0
  224. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/to_csv.md +0 -0
  225. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/to_json.md +0 -0
  226. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view/to_json_string.md +0 -0
  227. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/docs/view.md +0 -0
  228. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/handlers/aiohttp.py +0 -0
  229. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/handlers/starlette.py +0 -0
  230. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/handlers/tornado.py +0 -0
  231. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/__init__.py +0 -0
  232. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/core/__init__.py +0 -0
  233. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/core/test_threadpool.py +0 -0
  234. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/server/__init__.py +0 -0
  235. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/server/test_session.py +0 -0
  236. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/single_threaded/test_single_threaded.py +0 -0
  237. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/__init__.py +0 -0
  238. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/object_sequence.py +0 -0
  239. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_delete.py +0 -0
  240. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_exception.py +0 -0
  241. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_leaks.py +0 -0
  242. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_ports.py +0 -0
  243. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_remove.py +0 -0
  244. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_table_arrow.py +0 -0
  245. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_table_numpy.py +0 -0
  246. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_table_pandas.py +0 -0
  247. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_to_format.py +0 -0
  248. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_update.py +0 -0
  249. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_update_arrow.py +0 -0
  250. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/table/test_update_pandas.py +0 -0
  251. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/viewer/__init__.py +0 -0
  252. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/viewer/test_viewer.py +0 -0
  253. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/widget/__init__.py +0 -0
  254. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/widget/test_widget.py +0 -0
  255. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/tests/widget/test_widget_pandas.py +0 -0
  256. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/viewer/__init__.py +0 -0
  257. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/viewer/validate.py +0 -0
  258. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/viewer/viewer.py +0 -0
  259. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/viewer/viewer_traitlets.py +0 -0
  260. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/perspective/widget/__init__.py +0 -0
  261. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/src/client/client_sync.rs +0 -0
  262. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/src/client/mod.rs +0 -0
  263. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/src/client/python.rs +0 -0
  264. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/src/lib.rs +0 -0
  265. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/src/server/mod.rs +0 -0
  266. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-python/src/server/server_sync.rs +0 -0
  267. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/Pybind.txt.in +0 -0
  268. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/arrow/CMakeLists.txt +0 -0
  269. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/arrow/config.h +0 -0
  270. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/arrow.txt.in +0 -0
  271. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/date.txt.in +0 -0
  272. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/double-conversion.txt.in +0 -0
  273. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/exprtk.txt.in +0 -0
  274. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/flatbuffers.txt.in +0 -0
  275. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/hopscotch.txt.in +0 -0
  276. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/lz4.txt.in +0 -0
  277. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/.clangd.in +0 -0
  278. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/FindColor.cmake +0 -0
  279. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/FindExprTk.cmake +0 -0
  280. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/FindFlatbuffers.cmake +0 -0
  281. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/FindInstallDependency.cmake +0 -0
  282. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/FindProtoc.cmake +0 -0
  283. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/FindRe2.cmake +0 -0
  284. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/LLVMToolchain.cmake +0 -0
  285. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/modules/SetupClangd.cmake +0 -0
  286. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/ordered-map.txt.in +0 -0
  287. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/protobuf.txt.in +0 -0
  288. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/rapidjson.txt.in +0 -0
  289. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/re2/CMakeLists.txt +0 -0
  290. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cmake/re2.txt.in +0 -0
  291. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/.clangd.in +0 -0
  292. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/CMakeLists.txt +0 -0
  293. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/build.js +0 -0
  294. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/env.js +0 -0
  295. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/aggregate.cpp +0 -0
  296. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/aggspec.cpp +0 -0
  297. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/arg_sort.cpp +0 -0
  298. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/arrow_csv.cpp +0 -0
  299. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/arrow_loader.cpp +0 -0
  300. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/arrow_writer.cpp +0 -0
  301. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/base.cpp +0 -0
  302. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/base_impl_linux.cpp +0 -0
  303. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/base_impl_osx.cpp +0 -0
  304. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/base_impl_wasm.cpp +0 -0
  305. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/base_impl_win.cpp +0 -0
  306. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/binding.cpp +0 -0
  307. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/column.cpp +0 -0
  308. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/comparators.cpp +0 -0
  309. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/compat.cpp +0 -0
  310. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/compat_impl_linux.cpp +0 -0
  311. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/compat_impl_osx.cpp +0 -0
  312. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/compat_impl_wasm.cpp +0 -0
  313. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/compat_impl_win.cpp +0 -0
  314. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/computed_expression.cpp +0 -0
  315. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/computed_function.cpp +0 -0
  316. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/config.cpp +0 -0
  317. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_base.cpp +0 -0
  318. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_grouped_pkey.cpp +0 -0
  319. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_handle.cpp +0 -0
  320. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_iterators.cpp +0 -0
  321. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_one.cpp +0 -0
  322. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_two.cpp +0 -0
  323. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_unit.cpp +0 -0
  324. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/context_zero.cpp +0 -0
  325. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/data.cpp +0 -0
  326. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/data_slice.cpp +0 -0
  327. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/data_table.cpp +0 -0
  328. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/date.cpp +0 -0
  329. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/date_parser.cpp +0 -0
  330. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/dense_nodes.cpp +0 -0
  331. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/dense_tree.cpp +0 -0
  332. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/dense_tree_context.cpp +0 -0
  333. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/dependency.cpp +0 -0
  334. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/emscripten_api.cpp +0 -0
  335. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/expression_tables.cpp +0 -0
  336. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/expression_vocab.cpp +0 -0
  337. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/extract_aggregate.cpp +0 -0
  338. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/filter.cpp +0 -0
  339. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/flat_traversal.cpp +0 -0
  340. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/get_data_extents.cpp +0 -0
  341. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/gnode.cpp +0 -0
  342. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/gnode_state.cpp +0 -0
  343. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/init.cpp +0 -0
  344. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/kernel_engine.cpp +0 -0
  345. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/main.cpp +0 -0
  346. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/mask.cpp +0 -0
  347. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/multi_sort.cpp +0 -0
  348. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/none.cpp +0 -0
  349. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/path.cpp +0 -0
  350. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/pivot.cpp +0 -0
  351. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/pool.cpp +0 -0
  352. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/port.cpp +0 -0
  353. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/process_state.cpp +0 -0
  354. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/proto_api.cpp +0 -0
  355. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/pyutils.cpp +0 -0
  356. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/raii.cpp +0 -0
  357. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/raii_impl_linux.cpp +0 -0
  358. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/raii_impl_osx.cpp +0 -0
  359. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/raii_impl_win.cpp +0 -0
  360. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/range.cpp +0 -0
  361. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/regex.cpp +0 -0
  362. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/rlookup.cpp +0 -0
  363. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/scalar.cpp +0 -0
  364. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/schema.cpp +0 -0
  365. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/schema_column.cpp +0 -0
  366. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/server.cpp +0 -0
  367. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/simple_bitmask.cpp +0 -0
  368. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/slice.cpp +0 -0
  369. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/sort_specification.cpp +0 -0
  370. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/sparse_tree_node.cpp +0 -0
  371. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/step_delta.cpp +0 -0
  372. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/storage.cpp +0 -0
  373. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/storage_impl_linux.cpp +0 -0
  374. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/storage_impl_osx.cpp +0 -0
  375. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/storage_impl_win.cpp +0 -0
  376. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/sym_table.cpp +0 -0
  377. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/table.cpp +0 -0
  378. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/time.cpp +0 -0
  379. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/tracing.cpp +0 -0
  380. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/tracing_impl_linux.cpp +0 -0
  381. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/tracing_impl_osx.cpp +0 -0
  382. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/traversal.cpp +0 -0
  383. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/traversal_nodes.cpp +0 -0
  384. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/tree_context_common.cpp +0 -0
  385. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/update_task.cpp +0 -0
  386. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/utils.cpp +0 -0
  387. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/vendor/arrow_compute_registry.cpp +0 -0
  388. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/vendor/arrow_single_threaded_reader.cpp +0 -0
  389. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/vendor/single_threaded_reader.cpp +0 -0
  390. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/view.cpp +0 -0
  391. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/view_config.cpp +0 -0
  392. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/cpp/vocab.cpp +0 -0
  393. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/aggregate.h +0 -0
  394. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/aggspec.h +0 -0
  395. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/arg_sort.h +0 -0
  396. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/arrow_csv.h +0 -0
  397. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/arrow_loader.h +0 -0
  398. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/arrow_writer.h +0 -0
  399. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/base.h +0 -0
  400. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/binding.h +0 -0
  401. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/column.h +0 -0
  402. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/comparators.h +0 -0
  403. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/compat.h +0 -0
  404. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/computed_expression.h +0 -0
  405. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/computed_function.h +0 -0
  406. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/config.h +0 -0
  407. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_base.h +0 -0
  408. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_common_decls.h +0 -0
  409. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_grouped_pkey.h +0 -0
  410. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_handle.h +0 -0
  411. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_one.h +0 -0
  412. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_two.h +0 -0
  413. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_unit.h +0 -0
  414. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/context_zero.h +0 -0
  415. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/data.h +0 -0
  416. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/data_accessor.h +0 -0
  417. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/data_slice.h +0 -0
  418. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/data_table.h +0 -0
  419. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/date.h +0 -0
  420. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/date_parser.h +0 -0
  421. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/debug_helpers.h +0 -0
  422. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/defaults.h +0 -0
  423. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/dense_nodes.h +0 -0
  424. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/dense_tree.h +0 -0
  425. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/dense_tree_context.h +0 -0
  426. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/dependency.h +0 -0
  427. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/emscripten_api_utils.h +0 -0
  428. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/env_vars.h +0 -0
  429. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/exception.h +0 -0
  430. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/exports.h +0 -0
  431. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/expression_tables.h +0 -0
  432. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/expression_vocab.h +0 -0
  433. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/exprtk.h +0 -0
  434. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/extract_aggregate.h +0 -0
  435. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/filter.h +0 -0
  436. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/filter_utils.h +0 -0
  437. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/first.h +0 -0
  438. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/flat_traversal.h +0 -0
  439. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/flatten.h +0 -0
  440. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/fragments.h +0 -0
  441. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/get_data_extents.h +0 -0
  442. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/gnode.h +0 -0
  443. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/gnode_state.h +0 -0
  444. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/index.h +0 -0
  445. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/init.h +0 -0
  446. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/iterator.h +0 -0
  447. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/kernel_engine.h +0 -0
  448. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/last.h +0 -0
  449. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/mask.h +0 -0
  450. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/multi_sort.h +0 -0
  451. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/node_processor.h +0 -0
  452. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/node_processor_types.h +0 -0
  453. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/none.h +0 -0
  454. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/parallel_for.h +0 -0
  455. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/partition.h +0 -0
  456. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/path.h +0 -0
  457. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/pivot.h +0 -0
  458. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/pool.h +0 -0
  459. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/port.h +0 -0
  460. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/portable.h +0 -0
  461. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/process_state.h +0 -0
  462. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/proto_api.h +0 -0
  463. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/pyutils.h +0 -0
  464. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/raii.h +0 -0
  465. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/range.h +0 -0
  466. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/raw_types.h +0 -0
  467. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/regex.h +0 -0
  468. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/rlookup.h +0 -0
  469. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/scalar.h +0 -0
  470. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/schema.h +0 -0
  471. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/schema_column.h +0 -0
  472. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/server.h +0 -0
  473. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/simple_bitmask.h +0 -0
  474. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/slice.h +0 -0
  475. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/sort_specification.h +0 -0
  476. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/sparse_tree.h +0 -0
  477. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/sparse_tree_node.h +0 -0
  478. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/step_delta.h +0 -0
  479. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/storage.h +0 -0
  480. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/sym_table.h +0 -0
  481. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/table.h +0 -0
  482. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/time.h +0 -0
  483. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/tracing.h +0 -0
  484. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/tracing_impl_linux.h +0 -0
  485. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/tracing_impl_osx.h +0 -0
  486. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/tracing_impl_win.h +0 -0
  487. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/traversal.h +0 -0
  488. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/traversal_nodes.h +0 -0
  489. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/tree_context_common.h +0 -0
  490. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/tree_iterator.h +0 -0
  491. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/update_task.h +0 -0
  492. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/utils.h +0 -0
  493. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/val.h +0 -0
  494. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/vendor/arrow_compute_registry.h +0 -0
  495. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/vendor/arrow_single_threaded_reader.h +0 -0
  496. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/view.h +0 -0
  497. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/view_config.h +0 -0
  498. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/perspective/src/include/perspective/vocab.h +0 -0
  499. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/protos/CMakeLists.txt +0 -0
  500. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/cpp/protos/perspective.proto +0 -0
  501. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/include/server.h +0 -0
  502. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/src/ffi.rs +0 -0
  503. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/src/lib.rs +0 -0
  504. {perspective_python-3.0.0rc1 → perspective_python-3.0.0rc2}/rust/perspective-server/src/server.cpp +0 -0
  505. {perspective.data → perspective_python-3.0.0rc2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/install.json +0 -0
  506. /perspective.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.d2836dfacdf59284d040.js.LICENSE.txt → /perspective_python-3.0.0rc2.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.62664683b16e6812e453.js.LICENSE.txt +0 -0
  507. {perspective.data → perspective_python-3.0.0rc2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/905.d3bbc3d5954582d507bb.js +0 -0
  508. {perspective.data → perspective_python-3.0.0rc2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/style.js +0 -0
  509. {perspective.data → perspective_python-3.0.0rc2.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/third-party-licenses.json +0 -0
@@ -1783,7 +1783,7 @@ checksum = "e3148f5046208a5d56bcfc03053e3ca6334e51da8dfb19b6cdc8b306fae3283e"
1783
1783
 
1784
1784
  [[package]]
1785
1785
  name = "perspective"
1786
- version = "3.0.0-rc.1"
1786
+ version = "3.0.0-rc.2"
1787
1787
  dependencies = [
1788
1788
  "async-lock",
1789
1789
  "perspective-client",
@@ -1821,7 +1821,7 @@ dependencies = [
1821
1821
 
1822
1822
  [[package]]
1823
1823
  name = "perspective-client"
1824
- version = "3.0.0-rc.1"
1824
+ version = "3.0.0-rc.2"
1825
1825
  dependencies = [
1826
1826
  "async-lock",
1827
1827
  "futures",
@@ -1843,7 +1843,7 @@ dependencies = [
1843
1843
 
1844
1844
  [[package]]
1845
1845
  name = "perspective-js"
1846
- version = "3.0.0-rc.1"
1846
+ version = "3.0.0-rc.2"
1847
1847
  dependencies = [
1848
1848
  "anyhow",
1849
1849
  "base64 0.13.1",
@@ -1872,7 +1872,7 @@ dependencies = [
1872
1872
 
1873
1873
  [[package]]
1874
1874
  name = "perspective-lint"
1875
- version = "3.0.0-rc.1"
1875
+ version = "3.0.0-rc.2"
1876
1876
  dependencies = [
1877
1877
  "glob",
1878
1878
  "yew-fmt",
@@ -1880,7 +1880,7 @@ dependencies = [
1880
1880
 
1881
1881
  [[package]]
1882
1882
  name = "perspective-python"
1883
- version = "3.0.0-rc.1"
1883
+ version = "3.0.0-rc.2"
1884
1884
  dependencies = [
1885
1885
  "async-lock",
1886
1886
  "extend",
@@ -1898,7 +1898,7 @@ dependencies = [
1898
1898
 
1899
1899
  [[package]]
1900
1900
  name = "perspective-server"
1901
- version = "3.0.0-rc.1"
1901
+ version = "3.0.0-rc.2"
1902
1902
  dependencies = [
1903
1903
  "async-lock",
1904
1904
  "cmake",
@@ -1912,7 +1912,7 @@ dependencies = [
1912
1912
 
1913
1913
  [[package]]
1914
1914
  name = "perspective-viewer"
1915
- version = "3.0.0-rc.1"
1915
+ version = "3.0.0-rc.2"
1916
1916
  dependencies = [
1917
1917
  "anyhow",
1918
1918
  "async-lock",
@@ -1,9 +1,8 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: perspective-python
3
- Version: 3.0.0rc1
3
+ Version: 3.0.0rc2
4
4
  Classifier: Programming Language :: Rust
5
5
  Classifier: Programming Language :: Python :: Implementation :: CPython
6
- Classifier: Programming Language :: Python :: Implementation :: PyPy
7
6
  Summary: A data visualization and analytics component, especially well-suited for large and/or streaming datasets.
8
7
  Home-Page: https://perspective.finos.org
9
8
  Author: Andrew Stein <steinlink@gmail.com>
@@ -10,13 +10,14 @@
10
10
  # ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
11
  # ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
12
 
13
- __version__ = "3.0.0-rc.1"
13
+ __version__ = "3.0.0-rc.2"
14
14
  __all__ = [
15
15
  "_jupyter_labextension_paths",
16
16
  "PerspectiveError",
17
17
  "PerspectiveWidget",
18
18
  "PerspectiveViewer",
19
19
  "PerspectiveTornadoHandler",
20
+ "ProxySession",
20
21
  "Table",
21
22
  "View",
22
23
  ]
@@ -73,6 +74,6 @@ class Client(PySyncClient):
73
74
  return client
74
75
 
75
76
 
76
- # read by `jupyter labextension develop`
77
+ # Read by `jupyter labextension develop`
77
78
  def _jupyter_labextension_paths():
78
79
  return [{"src": "labextension", "dest": "@finos/perspective-jupyterlab"}]
@@ -11,16 +11,16 @@
11
11
  # ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
12
 
13
13
  try:
14
- from .aiohttp import PerspectiveAIOHTTPHandler
14
+ from .aiohttp import PerspectiveAIOHTTPHandler # noqa: F401
15
15
  except ImportError:
16
16
  ...
17
17
 
18
18
  try:
19
- from .starlette import PerspectiveStarletteHandler
19
+ from .starlette import PerspectiveStarletteHandler # noqa: F401
20
20
  except ImportError:
21
21
  ...
22
22
 
23
23
  try:
24
- from .tornado import PerspectiveTornadoHandler
24
+ from .tornado import PerspectiveTornadoHandler # noqa: F401
25
25
  except ImportError:
26
26
  ...
@@ -20,13 +20,35 @@ from random import random, randint, choice
20
20
  from faker import Faker
21
21
 
22
22
 
23
- fake = Faker()
24
-
25
23
  # Our tests construct naive datetimes everywhere
26
24
  # so setting it here is an easy way to fix it globally.
27
25
  import os
26
+
27
+ # Perspective used to support datetime.date and datetime.datetime
28
+ # as Table() constructor arguments, but now we forward the parameters
29
+ # directly to JSON.loads. So to make sure the tests dont need to be
30
+ # so utterly transmogrified, we have this little hack :)
31
+ import json
32
+
33
+
28
34
  os.environ["TZ"] = "UTC"
29
35
 
36
+
37
+ def new_encoder(self, obj):
38
+ if isinstance(obj, datetime):
39
+ return str(obj)
40
+ elif isinstance(obj, date):
41
+ return str(obj)
42
+ else:
43
+ return old(self, obj)
44
+
45
+
46
+ old = json.JSONEncoder.default
47
+ json.JSONEncoder.default = new_encoder
48
+
49
+ fake = Faker()
50
+
51
+
30
52
  def _make_date_time_index(size, time_unit):
31
53
  return pd.date_range("2000-01-01", periods=size, freq=time_unit)
32
54
 
@@ -248,21 +270,3 @@ def superstore(count=100):
248
270
  dat["Profit"] = round(random() * 1000, 2)
249
271
  data.append(dat)
250
272
  return pd.DataFrame(data)
251
-
252
-
253
- # Perspective used to support datetime.date and datetime.datetime
254
- # as Table() constructor arguments, but now we forward the parameters
255
- # directly to JSON.loads. So to make sure the tests dont need to be
256
- # so utterly transmogrified, we have this little hack :)
257
- import json
258
- old = json.JSONEncoder.default
259
-
260
- def new_encoder(self, obj):
261
- if isinstance(obj, datetime):
262
- return str(obj)
263
- elif isinstance(obj, date):
264
- return str(obj)
265
- else:
266
- return old(self, obj)
267
-
268
- json.JSONEncoder.default = new_encoder
@@ -20,7 +20,7 @@ from perspective import (
20
20
  Server,
21
21
  Client,
22
22
  )
23
- from pytest import mark, raises
23
+ from pytest import mark
24
24
 
25
25
 
26
26
  def syncify(f):
@@ -119,29 +119,6 @@ class TestAsync(object):
119
119
  assert _task() == 10
120
120
  tbl.delete()
121
121
 
122
- @mark.skip(reason="We take a loop to construct the client now")
123
- def test_async_call_loop_error_if_no_loop(self):
124
- server = Server()
125
- client = Client.from_server(
126
- server, lambda fn, *args: TestAsync.loop.add_callback(fn, *args)
127
- )
128
- tbl = client.table({"a": "integer", "b": "float", "c": "string"})
129
-
130
- with raises(PerspectiveError):
131
- # loop not set - errors
132
- tbl.update(data)
133
-
134
- tbl.update(data)
135
-
136
- @syncify
137
- def _task():
138
- return tbl.size()
139
-
140
- # subsequent calls to call_loop will work if loop_callback is set.
141
- assert _task() == 10
142
-
143
- tbl.delete()
144
-
145
122
  def test_async_multiple_managers_queue_process(self):
146
123
  server = Server()
147
124
  client = Client.from_server(
@@ -39,7 +39,7 @@ class TestServer(object):
39
39
  def test_server_host_table(self):
40
40
  server = Server()
41
41
  client = Client.from_server(server)
42
- table = client.table(data, name="table1")
42
+ client.table(data, name="table1")
43
43
  table2 = client.open_table("table1")
44
44
  assert table2.schema() == {"a": "integer", "b": "string"}
45
45
 
@@ -126,15 +126,11 @@ class TestServer(object):
126
126
  assert client._get_view("view1").schema() == {"a": "integer", "b": "string"}
127
127
 
128
128
  def test_server_create_view_zero(self):
129
- message = {"id": 1, "table_name": "table1", "view_name": "view1", "cmd": "view"}
130
129
  server = Server()
131
130
  client = Client.from_server(server)
132
131
  client.table(data, name="table1")
133
132
  table = client.open_table("table1")
134
- print(f"XXX: {dir(table)}")
135
133
  assert table.view().dimensions()["num_view_rows"] == 3
136
- # client._process(message, self.post)
137
- # assert client._views["view1"].num_rows() == 3
138
134
 
139
135
  def test_server_create_view_one(self):
140
136
  server = Server()
@@ -10,10 +10,9 @@
10
10
  # ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
11
  # ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
12
 
13
- import sys
14
- from datetime import date, datetime, timezone
13
+ from datetime import date, datetime
15
14
  import perspective
16
- from pytest import mark, raises, skip
15
+ from pytest import mark, raises
17
16
  import pytest
18
17
  import perspective as psp
19
18
 
@@ -446,7 +445,10 @@ class TestTable:
446
445
  },
447
446
  index="a",
448
447
  )
449
- ts = lambda x: int(datetime.timestamp(x) * 1000)
448
+
449
+ def ts(x):
450
+ return int(datetime.timestamp(x) * 1000)
451
+
450
452
  assert tbl.view().to_columns() == {
451
453
  "a": [
452
454
  None,
@@ -216,7 +216,7 @@ if os.name != "nt":
216
216
  def test_table_datetime_cant_convert_from_int(self):
217
217
  data = pd.DataFrame({"a": [0]})
218
218
  table = Table({"a": "datetime"})
219
- with raises(PerspectiveError) as ex:
219
+ with raises(PerspectiveError):
220
220
  table.update(data)
221
221
  # assert str(ex.value) == "..."
222
222
 
@@ -58,7 +58,7 @@ class TestTableInfer(object):
58
58
  "b": [False, False, False, False, False],
59
59
  }
60
60
 
61
- def test_table_infer_bool(self):
61
+ def test_table_infer_bool_variant(self):
62
62
  data = {"a": [None, None, None, None, True, True, True]}
63
63
  tbl = Table(data)
64
64
  assert tbl.schema() == {"a": "boolean"}
@@ -10,8 +10,6 @@
10
10
  # ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
11
  # ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
12
 
13
- from datetime import date, datetime
14
- from pytest import mark
15
13
  import perspective as psp
16
14
 
17
15
  client = psp.Server().new_local_client()
@@ -93,7 +93,10 @@ class TestToArrow(object):
93
93
  assert tbl.schema() == {"a": "date"}
94
94
  arr = tbl.view().to_arrow()
95
95
  tbl2 = Table(arr)
96
- ts = lambda x: int(datetime.timestamp(x) * 1000)
96
+
97
+ def ts(x):
98
+ return int(datetime.timestamp(x) * 1000)
99
+
97
100
  assert tbl2.schema() == tbl.schema()
98
101
  assert tbl2.view().to_columns() == {
99
102
  "a": [
@@ -10,7 +10,6 @@
10
10
  # ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
11
  # ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
12
 
13
- import os
14
13
  import perspective as psp
15
14
 
16
15
  client = psp.Server().new_local_client()
@@ -10,7 +10,6 @@
10
10
  # ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
11
  # ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
12
 
13
- import random
14
13
  import pandas as pd
15
14
  import numpy as np
16
15
  from perspective import PerspectiveError
@@ -1627,8 +1627,8 @@ class TestViewExpression(object):
1627
1627
  expected_domain = re.search(r"@([a-zA-Z.]+)$", source).group(1)
1628
1628
  assert results["address"][i] == expected_address
1629
1629
  assert results["domain"][i] == expected_domain
1630
- assert results["is_email?"][i] == True
1631
- assert results["has_at?"][i] == True
1630
+ assert results["is_email?"][i]
1631
+ assert results["has_at?"][i]
1632
1632
 
1633
1633
  def test_view_expression_number(self):
1634
1634
  def digits():
@@ -1672,7 +1672,7 @@ class TestViewExpression(object):
1672
1672
  source = results["a"][i]
1673
1673
  expected = re.sub(r"[ -]", "", source)
1674
1674
  assert results["parsed"][i] == expected
1675
- assert results["is_number?"][i] == True
1675
+ assert results["is_number?"][i]
1676
1676
 
1677
1677
  def test_view_expression_newlines(self):
1678
1678
  table = Table(
@@ -1922,7 +1922,7 @@ class TestViewExpression(object):
1922
1922
  r"^[0-9]{4}", "long string, very cool!", source
1923
1923
  )
1924
1924
 
1925
- def test_view_replace_invalid(self):
1925
+ def test_view_replace_invalid_variation(self):
1926
1926
  table = Table({"a": "string", "b": "string"})
1927
1927
  expressions = [
1928
1928
  """//v
@@ -10,7 +10,6 @@
10
10
  # ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
11
  # ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
12
 
13
- from pytest import raises
14
13
 
15
14
 
16
15
  # from perspective.core import Plugin
@@ -12,18 +12,18 @@
12
12
 
13
13
  import base64
14
14
  import jinja2
15
- import json
16
15
  import logging
17
16
  import os
18
- from datetime import date, datetime
19
- from functools import partial
17
+ import re
20
18
 
21
19
  from ipywidgets import DOMWidget
22
20
  from traitlets import Unicode, observe
23
21
  from ..viewer import PerspectiveViewer
24
22
  import importlib
25
23
 
26
- __version__ = importlib.metadata.version("perspective-python")
24
+ __version__ = re.sub(
25
+ "(rc|alpha|beta)", "-\\1.", importlib.metadata.version("perspective-python")
26
+ )
27
27
 
28
28
 
29
29
  class PerspectiveWidget(DOMWidget, PerspectiveViewer):
@@ -16,17 +16,16 @@ build-backend = "maturin"
16
16
 
17
17
  [project]
18
18
  name = "perspective-python"
19
- version = "3.0.0-rc1"
20
19
  requires-python = ">=3.9"
21
20
  dynamic = ["version"]
22
21
  classifiers = [
23
22
  "Programming Language :: Rust",
24
23
  "Programming Language :: Python :: Implementation :: CPython",
25
- "Programming Language :: Python :: Implementation :: PyPy",
26
24
  ]
27
25
 
28
26
  [tool.maturin]
29
- data = "perspective.data"
27
+ module-name = "perspective"
28
+ data = "perspective_python-3.0.0rc2.data"
30
29
  features = ["pyo3/extension-module"]
31
30
  manifest-path = "rust/perspective-python/Cargo.toml"
32
31
 
@@ -12,7 +12,7 @@
12
12
 
13
13
  [package]
14
14
  name = "perspective-client"
15
- version = "3.0.0-rc.1"
15
+ version = "3.0.0-rc.2"
16
16
  authors = ["Andrew Stein <steinlink@gmail.com>"]
17
17
  edition = "2021"
18
18
  description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets."
@@ -0,0 +1 @@
1
+ Provides the [`perspective_client::SystemInfo`] struct.
@@ -36,13 +36,13 @@ client), where the data is stored and all calculation occurs.
36
36
 
37
37
  #### JavaScript
38
38
 
39
- ```js
39
+ ```javascript
40
40
  // Load a CSV
41
41
  const table = await client.table("x,y\n1,2\n3,4");
42
42
 
43
43
  // Load an Arrow
44
44
  import * as fs from "node:fs/promises";
45
- const table2 = await client.table(fs.readFile("superstore.arrow"));
45
+ const table2 = await client.table(await fs.readFile("superstore.arrow"));
46
46
  ```
47
47
 
48
48
  #### Python
@@ -3,7 +3,7 @@ locally in-memory or remote over some transport like a `WebSocket`. To create,
3
3
  use the appropriate constructor function:
4
4
 
5
5
  - `websocket` - Create a connection to a WebSocket `Server` instance.
6
- - `worker` [JavaScript] - Unlike the other `Client` constructors, the
6
+ - `worker` (JavaScript) - Unlike the other `Client` constructors, the
7
7
  `worker` version also owns its `Server`, which runs in a dedicated Web
8
8
  Worker.
9
9
  - `local` [Rust, Python] - Create an `Client` connected to an in-memory,
@@ -14,5 +14,5 @@ use the appropriate constructor function:
14
14
  #### JavaScript
15
15
 
16
16
  ```javascript
17
- const client = perspective.worker();
17
+ const client = await perspective.worker();
18
18
  ```
@@ -0,0 +1 @@
1
+ Get a copy of the [`Client`] this [`Table`] came from.
@@ -0,0 +1,2 @@
1
+ Get a metadata dictionary of the [`Server`]'s features, which is (currently)
2
+ implementation specific, but there is only one implementation.
@@ -0,0 +1 @@
1
+ A copy of the config object passed to the [`perspective_client::Table::view`] method which created this [`perspective_client::View`].
@@ -273,9 +273,9 @@ impl View {
273
273
  }
274
274
  }
275
275
 
276
- /// This is used when constructing a [`Table`] from a [`View`].
277
- /// The callback needs to be async to wire up the views on_update to the
278
- /// tables.
276
+ /// This is used when constructing a [`super::table::Table`] from a
277
+ /// [`View`]. The callback needs to be async to wire up the views
278
+ /// on_update to the tables.
279
279
  pub async fn on_update<T, U>(&self, on_update: T, options: OnUpdateOptions) -> ClientResult<u32>
280
280
  where
281
281
  T: Fn(ViewOnUpdateResp) -> U + Send + Sync + 'static,
@@ -12,7 +12,7 @@
12
12
 
13
13
  [package]
14
14
  name = "perspective-python"
15
- version = "3.0.0-rc.1"
15
+ version = "3.0.0-rc.2"
16
16
  edition = "2021"
17
17
  description = "A data visualization and analytics component, especially well-suited for large and/or streaming datasets."
18
18
  repository = "https://github.com/finos/perspective"
@@ -40,7 +40,6 @@ external-cpp = [
40
40
  ]
41
41
 
42
42
  [lib]
43
- name = "perspective"
44
43
  crate-type = ["cdylib"]
45
44
 
46
45
  [build-dependencies]
@@ -49,8 +48,8 @@ python-config-rs = "0.1.2"
49
48
 
50
49
  [dependencies]
51
50
  async-lock = "2.5.0"
52
- perspective-client = { version = "3.0.0-rc.1", path = "../perspective-client" }
53
- perspective-server = { version = "3.0.0-rc.1", path = "../perspective-server" }
51
+ perspective-client = { version = "3.0.0-rc.2", path = "../perspective-client" }
52
+ perspective-server = { version = "3.0.0-rc.2", path = "../perspective-server" }
54
53
  pollster = "0.3.0"
55
54
  extend = "1.1.2"
56
55
  futures = "0.3.28"
@@ -11,13 +11,11 @@
11
11
  # ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
12
 
13
13
  import multiprocessing
14
- import asyncio
15
14
  import os
16
15
  import os.path
17
16
  import time
18
17
  from perspective.core.globalpsp import shared_client
19
18
  from perspective.handlers.tornado import PerspectiveTornadoHandler
20
- from tornado.websocket import websocket_connect
21
19
  import tornado
22
20
  import threading
23
21
  import numpy
@@ -0,0 +1 @@
1
+ Provides the [`perspective_client::SystemInfo`] struct.
@@ -36,13 +36,13 @@ client), where the data is stored and all calculation occurs.
36
36
 
37
37
  #### JavaScript
38
38
 
39
- ```js
39
+ ```javascript
40
40
  // Load a CSV
41
41
  const table = await client.table("x,y\n1,2\n3,4");
42
42
 
43
43
  // Load an Arrow
44
44
  import * as fs from "node:fs/promises";
45
- const table2 = await client.table(fs.readFile("superstore.arrow"));
45
+ const table2 = await client.table(await fs.readFile("superstore.arrow"));
46
46
  ```
47
47
 
48
48
  #### Python
@@ -3,7 +3,7 @@ locally in-memory or remote over some transport like a `WebSocket`. To create,
3
3
  use the appropriate constructor function:
4
4
 
5
5
  - `websocket` - Create a connection to a WebSocket `Server` instance.
6
- - `worker` [JavaScript] - Unlike the other `Client` constructors, the
6
+ - `worker` (JavaScript) - Unlike the other `Client` constructors, the
7
7
  `worker` version also owns its `Server`, which runs in a dedicated Web
8
8
  Worker.
9
9
  - `local` [Rust, Python] - Create an `Client` connected to an in-memory,
@@ -14,5 +14,5 @@ use the appropriate constructor function:
14
14
  #### JavaScript
15
15
 
16
16
  ```javascript
17
- const client = perspective.worker();
17
+ const client = await perspective.worker();
18
18
  ```
@@ -0,0 +1 @@
1
+ Get a copy of the [`Client`] this [`Table`] came from.
@@ -0,0 +1,2 @@
1
+ Get a metadata dictionary of the [`Server`]'s features, which is (currently)
2
+ implementation specific, but there is only one implementation.
@@ -0,0 +1 @@
1
+ A copy of the config object passed to the [`perspective_client::Table::view`] method which created this [`perspective_client::View`].
@@ -10,13 +10,14 @@
10
10
  # ┃ of the [Apache License 2.0](https://www.apache.org/licenses/LICENSE-2.0). ┃
11
11
  # ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
12
 
13
- __version__ = "3.0.0-rc.1"
13
+ __version__ = "3.0.0-rc.2"
14
14
  __all__ = [
15
15
  "_jupyter_labextension_paths",
16
16
  "PerspectiveError",
17
17
  "PerspectiveWidget",
18
18
  "PerspectiveViewer",
19
19
  "PerspectiveTornadoHandler",
20
+ "ProxySession",
20
21
  "Table",
21
22
  "View",
22
23
  ]
@@ -73,6 +74,6 @@ class Client(PySyncClient):
73
74
  return client
74
75
 
75
76
 
76
- # read by `jupyter labextension develop`
77
+ # Read by `jupyter labextension develop`
77
78
  def _jupyter_labextension_paths():
78
79
  return [{"src": "labextension", "dest": "@finos/perspective-jupyterlab"}]
@@ -11,16 +11,16 @@
11
11
  # ┗━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┛
12
12
 
13
13
  try:
14
- from .aiohttp import PerspectiveAIOHTTPHandler
14
+ from .aiohttp import PerspectiveAIOHTTPHandler # noqa: F401
15
15
  except ImportError:
16
16
  ...
17
17
 
18
18
  try:
19
- from .starlette import PerspectiveStarletteHandler
19
+ from .starlette import PerspectiveStarletteHandler # noqa: F401
20
20
  except ImportError:
21
21
  ...
22
22
 
23
23
  try:
24
- from .tornado import PerspectiveTornadoHandler
24
+ from .tornado import PerspectiveTornadoHandler # noqa: F401
25
25
  except ImportError:
26
26
  ...