perspective-python 3.6.1__tar.gz → 3.7.1__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 (112) hide show
  1. {perspective_python-3.6.1 → perspective_python-3.7.1}/Cargo.toml +8 -11
  2. {perspective_python-3.6.1 → perspective_python-3.7.1}/LICENSE_THIRDPARTY_cargo.yml +2139 -1237
  3. {perspective_python-3.6.1 → perspective_python-3.7.1}/PKG-INFO +1 -1
  4. {perspective_python-3.6.1 → perspective_python-3.7.1}/build.rs +0 -6
  5. {perspective_python-3.6.1 → perspective_python-3.7.1}/docs/lib.md +0 -19
  6. {perspective_python-3.6.1 → perspective_python-3.7.1}/package.json +1 -1
  7. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/__init__.py +8 -2
  8. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/handlers/aiohttp.py +5 -2
  9. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/handlers/starlette.py +5 -4
  10. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/handlers/tornado.py +38 -18
  11. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/async/test_async_client.py +6 -9
  12. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/async/test_websocket_client.py +1 -3
  13. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/core/test_async.py +12 -83
  14. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/multi_threaded/test_multi_threaded.py +54 -0
  15. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/server/test_server.py +5 -55
  16. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/server/test_session.py +36 -0
  17. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/widget/__init__.py +6 -6
  18. {perspective_python-3.6.1/perspective_python-3.6.1.data → perspective_python-3.7.1/perspective_python-3.7.1.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/package.json +2 -2
  19. perspective_python-3.7.1/perspective_python-3.7.1.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.68e8d46c0241772e85f9.js +16 -0
  20. perspective_python-3.7.1/perspective_python-3.7.1.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/985.db6bcc3586aa631e772d.js +1 -0
  21. perspective_python-3.7.1/perspective_python-3.7.1.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.291ac484cbc97290fd3f.js +1 -0
  22. {perspective_python-3.6.1 → perspective_python-3.7.1}/pyproject.toml +1 -1
  23. {perspective_python-3.6.1 → perspective_python-3.7.1}/src/client/client_async.rs +391 -153
  24. {perspective_python-3.6.1 → perspective_python-3.7.1}/src/client/client_sync.rs +152 -114
  25. {perspective_python-3.6.1 → perspective_python-3.7.1}/src/client/proxy_session.rs +3 -7
  26. {perspective_python-3.6.1 → perspective_python-3.7.1}/src/lib.rs +18 -15
  27. perspective_python-3.7.1/src/py_async.rs +108 -0
  28. {perspective_python-3.6.1 → perspective_python-3.7.1}/src/server/mod.rs +6 -0
  29. perspective_python-3.7.1/src/server/server_async.rs +94 -0
  30. perspective_python-3.7.1/src/server/server_sync.rs +84 -0
  31. perspective_python-3.6.1/src/server/server_sync.rs → perspective_python-3.7.1/src/server/session_async.rs +41 -78
  32. perspective_python-3.7.1/src/server/session_sync.rs +103 -0
  33. perspective_python-3.6.1/bench/runtime/__init__.py +0 -15
  34. perspective_python-3.6.1/bench/runtime/bench.py +0 -349
  35. perspective_python-3.6.1/bench/runtime/perspective_benchmark.py +0 -242
  36. perspective_python-3.6.1/bench/runtime/run_perspective_benchmark.py +0 -80
  37. perspective_python-3.6.1/bench/tornado/__init__.py +0 -15
  38. perspective_python-3.6.1/bench/tornado/async_server.py +0 -163
  39. perspective_python-3.6.1/bench/tornado/bench.py +0 -196
  40. perspective_python-3.6.1/bench/tornado/distributed_mode.py +0 -70
  41. perspective_python-3.6.1/bench/tornado/server/new_api.py +0 -111
  42. perspective_python-3.6.1/bench/tornado/server/old_api.py +0 -104
  43. perspective_python-3.6.1/bench/tornado/server_mode.py +0 -53
  44. perspective_python-3.6.1/docs/client/to_pandas.md +0 -1
  45. perspective_python-3.6.1/docs/client/to_polars.md +0 -1
  46. perspective_python-3.6.1/perspective/tests/widget/__init__.py +0 -11
  47. perspective_python-3.6.1/perspective_python-3.6.1.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.b434e57191da85924690.js +0 -16
  48. perspective_python-3.6.1/perspective_python-3.6.1.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/985.557fd483696e70b69ab8.js +0 -1
  49. perspective_python-3.6.1/perspective_python-3.6.1.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.8ff138c0f42fc2515259.js +0 -1
  50. {perspective_python-3.6.1 → perspective_python-3.7.1}/LICENSE.md +0 -0
  51. {perspective_python-3.6.1 → perspective_python-3.7.1}/README.md +0 -0
  52. {perspective_python-3.6.1 → perspective_python-3.7.1}/docs/index.html +0 -0
  53. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/extension/finos-perspective-nbextension.json +0 -0
  54. {perspective_python-3.6.1/bench → perspective_python-3.7.1/perspective/handlers}/__init__.py +0 -0
  55. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/templates/exported_widget.html.template +0 -0
  56. {perspective_python-3.6.1/perspective/handlers → perspective_python-3.7.1/perspective/tests}/__init__.py +0 -0
  57. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/conftest.py +0 -0
  58. {perspective_python-3.6.1/perspective/tests → perspective_python-3.7.1/perspective/tests/core}/__init__.py +0 -0
  59. {perspective_python-3.6.1/perspective/tests/core → perspective_python-3.7.1/perspective/tests/multi_threaded}/__init__.py +0 -0
  60. {perspective_python-3.6.1/perspective/tests/multi_threaded → perspective_python-3.7.1/perspective/tests/server}/__init__.py +0 -0
  61. {perspective_python-3.6.1/perspective/tests/server → perspective_python-3.7.1/perspective/tests/table}/__init__.py +0 -0
  62. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/arrow/date32.arrow +0 -0
  63. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/arrow/date64.arrow +0 -0
  64. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/arrow/dict.arrow +0 -0
  65. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/arrow/dict_update.arrow +0 -0
  66. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/arrow/int_float_str.arrow +0 -0
  67. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/arrow/int_float_str_file.arrow +0 -0
  68. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/arrow/int_float_str_update.arrow +0 -0
  69. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/object_sequence.py +0 -0
  70. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_delete.py +0 -0
  71. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_exception.py +0 -0
  72. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_leaks.py +0 -0
  73. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_ports.py +0 -0
  74. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_remove.py +0 -0
  75. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_table.py +0 -0
  76. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_table_arrow.py +0 -0
  77. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_table_datetime.py +0 -0
  78. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_table_infer.py +0 -0
  79. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_table_limit.py +0 -0
  80. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_table_numpy.py +0 -0
  81. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_table_pandas.py +0 -0
  82. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_table_polars.py +0 -0
  83. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_to_arrow.py +0 -0
  84. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_to_arrow_lz4.py +0 -0
  85. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_to_format.py +0 -0
  86. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_to_polars.py +0 -0
  87. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_update.py +0 -0
  88. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_update_arrow.py +0 -0
  89. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_update_pandas.py +0 -0
  90. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_view.py +0 -0
  91. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/table/test_view_expression.py +0 -0
  92. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/test_dependencies.py +0 -0
  93. {perspective_python-3.6.1/perspective/tests/table → perspective_python-3.7.1/perspective/tests/viewer}/__init__.py +0 -0
  94. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/viewer/test_viewer.py +0 -0
  95. {perspective_python-3.6.1/perspective/tests/viewer → perspective_python-3.7.1/perspective/tests/widget}/__init__.py +0 -0
  96. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/widget/test_widget.py +0 -0
  97. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/tests/widget/test_widget_pandas.py +0 -0
  98. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/widget/viewer/__init__.py +0 -0
  99. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/widget/viewer/validate.py +0 -0
  100. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/widget/viewer/viewer.py +0 -0
  101. {perspective_python-3.6.1 → perspective_python-3.7.1}/perspective/widget/viewer/viewer_traitlets.py +0 -0
  102. {perspective_python-3.6.1/perspective_python-3.6.1.data → perspective_python-3.7.1/perspective_python-3.7.1.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/install.json +0 -0
  103. /perspective_python-3.6.1/perspective_python-3.6.1.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.b434e57191da85924690.js.LICENSE.txt → /perspective_python-3.7.1/perspective_python-3.7.1.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.68e8d46c0241772e85f9.js.LICENSE.txt +0 -0
  104. {perspective_python-3.6.1/perspective_python-3.6.1.data → perspective_python-3.7.1/perspective_python-3.7.1.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/style.js +0 -0
  105. {perspective_python-3.6.1/perspective_python-3.6.1.data → perspective_python-3.7.1/perspective_python-3.7.1.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/third-party-licenses.json +0 -0
  106. {perspective_python-3.6.1 → perspective_python-3.7.1}/src/client/mod.rs +0 -0
  107. {perspective_python-3.6.1 → perspective_python-3.7.1}/src/client/pandas.rs +0 -0
  108. {perspective_python-3.6.1 → perspective_python-3.7.1}/src/client/polars.rs +0 -0
  109. {perspective_python-3.6.1 → perspective_python-3.7.1}/src/client/pyarrow.rs +0 -0
  110. {perspective_python-3.6.1 → perspective_python-3.7.1}/src/client/table_data.rs +0 -0
  111. {perspective_python-3.6.1 → perspective_python-3.7.1}/src/client/update_data.rs +0 -0
  112. {perspective_python-3.6.1 → perspective_python-3.7.1}/src/py_err.rs +0 -0
@@ -12,7 +12,7 @@
12
12
 
13
13
  [package]
14
14
  name = "perspective-python"
15
- version = "3.6.1"
15
+ version = "3.7.1"
16
16
  edition = "2024"
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"
@@ -22,7 +22,6 @@ authors = ["Andrew Stein <steinlink@gmail.com>"]
22
22
  keywords = []
23
23
  build = "build.rs"
24
24
  include = [
25
- "bench/**/*.py",
26
25
  "build.rs",
27
26
  "./Cargo.toml",
28
27
  "LICENSE.md",
@@ -39,7 +38,6 @@ include = [
39
38
  ]
40
39
 
41
40
  [package.metadata.docs.rs]
42
- features = ["external-docs"]
43
41
  rustdoc-args = ["--html-in-header", "docs/index.html"]
44
42
 
45
43
  [features]
@@ -48,7 +46,6 @@ abi3 = ["pyo3/abi3-py39"]
48
46
  external-cpp = ["perspective-server/external-cpp"]
49
47
  generate-proto = ["perspective-client/generate-proto"]
50
48
  protobuf-src = ["perspective-client/protobuf-src"]
51
- external-docs = []
52
49
 
53
50
  [lib]
54
51
  crate-type = ["cdylib"]
@@ -60,28 +57,28 @@ pyo3-build-config = "0.22.6"
60
57
  python-config-rs = "0.1.2"
61
58
 
62
59
  [dependencies]
63
- perspective-client = { version = "3.6.1" }
64
- perspective-server = { version = "3.6.1" }
60
+ perspective-client = { version = "3.7.1" }
61
+ perspective-server = { version = "3.7.1" }
65
62
  macro_rules_attribute = "0.2.0"
66
63
  async-lock = "2.5.0"
67
64
  pollster = "0.3.0"
68
65
  extend = "1.1.2"
69
66
  futures = "0.3.28"
70
- pyo3 = { version = "0.23.4", features = [
67
+ pyo3 = { version = "0.25.1", features = [
71
68
  "experimental-async",
72
69
  "extension-module",
73
70
  "serde",
74
71
  ] }
75
- pythonize = "0.23.0"
72
+ pythonize = "0.25.0"
76
73
  tracing = { version = ">=0.1.36" }
77
74
  tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
78
75
 
79
76
  [target.'cfg(target_os="emscripten")'.dependencies]
80
- pyo3-async-runtimes = { version = "0.23", features = ["attributes"] }
77
+ pyo3-async-runtimes = { version = "0.25.0", features = ["attributes"] }
81
78
 
82
79
  [target.'cfg(not(target_os="emscripten"))'.dependencies]
83
- pyo3-async-runtimes = { version = "0.23", features = [
80
+ pyo3-async-runtimes = { version = "0.25.0", features = [
84
81
  "attributes",
85
82
  "tokio-runtime",
86
83
  ] }
87
- tokio = { version = "1.43.0", features = ["full"] }
84
+ tokio = { version = "1.45.1", features = ["full"] }