perspective-python 3.3.3__tar.gz → 3.4.0__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.
- {perspective_python-3.3.3 → perspective_python-3.4.0}/Cargo.toml +22 -7
- {perspective_python-3.3.3 → perspective_python-3.4.0}/LICENSE_THIRDPARTY_cargo.yml +2119 -1212
- {perspective_python-3.3.3 → perspective_python-3.4.0}/PKG-INFO +1 -1
- {perspective_python-3.3.3 → perspective_python-3.4.0}/build.rs +1 -1
- {perspective_python-3.3.3 → perspective_python-3.4.0}/package.json +2 -2
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/__init__.py +3 -1
- perspective_python-3.4.0/perspective/tests/async/test_async_client.py +86 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/core/test_async.py +9 -1
- perspective_python-3.4.0/perspective/tests/table/test_to_polars.py +26 -0
- {perspective_python-3.3.3/perspective_python-3.3.3.data → perspective_python-3.4.0/perspective_python-3.4.0.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/package.json +2 -2
- perspective_python-3.4.0/perspective_python-3.4.0.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.0f172dc544c23b7d891b.js +16 -0
- perspective_python-3.3.3/perspective_python-3.3.3.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.5fd7c90a12bc935e483f.js → perspective_python-3.4.0/perspective_python-3.4.0.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/remoteEntry.e2475e79be6e72381911.js +1 -1
- {perspective_python-3.3.3 → perspective_python-3.4.0}/pyproject.toml +2 -1
- perspective_python-3.3.3/src/client/python.rs → perspective_python-3.4.0/src/client/client_async.rs +229 -109
- {perspective_python-3.3.3 → perspective_python-3.4.0}/src/client/client_sync.rs +23 -21
- {perspective_python-3.3.3 → perspective_python-3.4.0}/src/client/mod.rs +1 -1
- {perspective_python-3.3.3 → perspective_python-3.4.0}/src/client/pandas.rs +13 -15
- {perspective_python-3.3.3 → perspective_python-3.4.0}/src/client/polars.rs +11 -17
- {perspective_python-3.3.3 → perspective_python-3.4.0}/src/client/pyarrow.rs +4 -4
- {perspective_python-3.3.3 → perspective_python-3.4.0}/src/client/table_data.rs +22 -19
- {perspective_python-3.3.3 → perspective_python-3.4.0}/src/client/update_data.rs +11 -12
- {perspective_python-3.3.3 → perspective_python-3.4.0}/src/lib.rs +5 -4
- {perspective_python-3.3.3 → perspective_python-3.4.0}/src/server/server_sync.rs +8 -4
- perspective_python-3.3.3/perspective_python-3.3.3.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.95846a7767412de54a73.js +0 -16
- {perspective_python-3.3.3 → perspective_python-3.4.0}/LICENSE.md +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/README.md +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/bench/__init__.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/bench/runtime/__init__.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/bench/runtime/bench.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/bench/runtime/perspective_benchmark.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/bench/runtime/run_perspective_benchmark.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/bench/tornado/__init__.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/bench/tornado/async_server.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/bench/tornado/bench.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/bench/tornado/distributed_mode.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/bench/tornado/server/new_api.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/bench/tornado/server/old_api.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/bench/tornado/server_mode.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/docs/client/to_pandas.md +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/docs/client/to_polars.md +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/docs/index.html +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/docs/lib.md +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/extension/finos-perspective-nbextension.json +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/handlers/__init__.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/handlers/aiohttp.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/handlers/starlette.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/handlers/tornado.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/templates/exported_widget.html.template +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/__init__.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/conftest.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/core/__init__.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/multi_threaded/__init__.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/multi_threaded/test_multi_threaded.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/server/__init__.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/server/test_server.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/server/test_session.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/__init__.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/arrow/date32.arrow +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/arrow/date64.arrow +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/arrow/dict.arrow +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/arrow/dict_update.arrow +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/arrow/int_float_str.arrow +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/arrow/int_float_str_file.arrow +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/arrow/int_float_str_update.arrow +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/object_sequence.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_delete.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_exception.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_leaks.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_ports.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_remove.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_table.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_table_arrow.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_table_datetime.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_table_infer.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_table_limit.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_table_numpy.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_table_pandas.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_table_polars.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_to_arrow.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_to_arrow_lz4.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_to_format.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_update.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_update_arrow.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_update_pandas.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_view.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/table/test_view_expression.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/test_dependencies.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/viewer/__init__.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/viewer/test_viewer.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/widget/__init__.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/widget/test_widget.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/tests/widget/test_widget_pandas.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/widget/__init__.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/widget/viewer/__init__.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/widget/viewer/validate.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/widget/viewer/viewer.py +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/perspective/widget/viewer/viewer_traitlets.py +0 -0
- {perspective_python-3.3.3/perspective_python-3.3.3.data → perspective_python-3.4.0/perspective_python-3.4.0.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/install.json +0 -0
- /perspective_python-3.3.3/perspective_python-3.3.3.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.95846a7767412de54a73.js.LICENSE.txt → /perspective_python-3.4.0/perspective_python-3.4.0.data/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/253.0f172dc544c23b7d891b.js.LICENSE.txt +0 -0
- {perspective_python-3.3.3/perspective_python-3.3.3.data → perspective_python-3.4.0/perspective_python-3.4.0.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/985.557fd483696e70b69ab8.js +0 -0
- {perspective_python-3.3.3/perspective_python-3.3.3.data → perspective_python-3.4.0/perspective_python-3.4.0.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/style.js +0 -0
- {perspective_python-3.3.3/perspective_python-3.3.3.data → perspective_python-3.4.0/perspective_python-3.4.0.data}/data/share/jupyter/labextensions/@finos/perspective-jupyterlab/static/third-party-licenses.json +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/src/py_err.rs +0 -0
- {perspective_python-3.3.3 → perspective_python-3.4.0}/src/server/mod.rs +0 -0
|
@@ -12,8 +12,8 @@
|
|
|
12
12
|
|
|
13
13
|
[package]
|
|
14
14
|
name = "perspective-python"
|
|
15
|
-
version = "3.
|
|
16
|
-
edition = "
|
|
15
|
+
version = "3.4.0"
|
|
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"
|
|
19
19
|
license = "Apache-2.0"
|
|
@@ -56,18 +56,33 @@ crate-type = ["cdylib"]
|
|
|
56
56
|
[build-dependencies]
|
|
57
57
|
cmake = "0.1.50"
|
|
58
58
|
num_cpus = "^1.16.0"
|
|
59
|
-
pyo3-build-config = "0.
|
|
59
|
+
pyo3-build-config = "0.22.6"
|
|
60
60
|
python-config-rs = "0.1.2"
|
|
61
61
|
|
|
62
62
|
[dependencies]
|
|
63
|
-
perspective-client = { version = "3.
|
|
64
|
-
perspective-server = { version = "3.
|
|
63
|
+
perspective-client = { version = "3.4.0" }
|
|
64
|
+
perspective-server = { version = "3.4.0" }
|
|
65
65
|
macro_rules_attribute = "0.2.0"
|
|
66
66
|
async-lock = "2.5.0"
|
|
67
67
|
pollster = "0.3.0"
|
|
68
68
|
extend = "1.1.2"
|
|
69
69
|
futures = "0.3.28"
|
|
70
|
-
pyo3 = { version = "0.
|
|
71
|
-
|
|
70
|
+
pyo3 = { version = "0.23.4", features = [
|
|
71
|
+
"experimental-async",
|
|
72
|
+
"extension-module",
|
|
73
|
+
"serde",
|
|
74
|
+
"py-clone",
|
|
75
|
+
] }
|
|
76
|
+
pythonize = "0.23.0"
|
|
72
77
|
tracing = { version = ">=0.1.36" }
|
|
73
78
|
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
|
|
79
|
+
|
|
80
|
+
[target.'cfg(target_os="emscripten")'.dependencies]
|
|
81
|
+
pyo3-async-runtimes = { version = "0.23", features = ["attributes"] }
|
|
82
|
+
|
|
83
|
+
[target.'cfg(not(target_os="emscripten"))'.dependencies]
|
|
84
|
+
pyo3-async-runtimes = { version = "0.23", features = [
|
|
85
|
+
"attributes",
|
|
86
|
+
"tokio-runtime",
|
|
87
|
+
] }
|
|
88
|
+
tokio = { version = "1.43.0", features = ["full"] }
|