perspective-python 4.0.1__tar.gz → 4.1.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.
- {perspective_python-4.0.1 → perspective_python-4.1.1}/Cargo.toml +7 -3
- {perspective_python-4.0.1 → perspective_python-4.1.1}/LICENSE_THIRDPARTY_cargo.yml +4120 -2149
- {perspective_python-4.0.1 → perspective_python-4.1.1}/PKG-INFO +1 -1
- {perspective_python-4.0.1 → perspective_python-4.1.1}/package.json +1 -1
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/__init__.py +3 -1
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/conftest.py +3 -3
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_table_arrow.py +6 -6
- perspective_python-4.1.1/perspective/tests/table/test_table_view_table.py +130 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_update.py +1 -1
- perspective_python-4.1.1/perspective/virtual_servers/__init__.py +134 -0
- perspective_python-4.1.1/perspective/virtual_servers/duckdb.py +436 -0
- {perspective_python-4.0.1/perspective_python-4.0.1.data → perspective_python-4.1.1/perspective_python-4.1.1.data}/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/package.json +2 -2
- perspective_python-4.1.1/perspective_python-4.1.1.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/253.237a44566dca7b64bf21.js +2 -0
- perspective_python-4.1.1/perspective_python-4.1.1.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/523.c030af5d3c4f67ff83f6.js +1 -0
- perspective_python-4.1.1/perspective_python-4.1.1.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/remoteEntry.4593f39aaa7f286796fd.js +1 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/pyproject.toml +1 -1
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/client/client_async.rs +1 -2
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/client/client_sync.rs +1 -1
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/client/table_data.rs +5 -1
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/lib.rs +1 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/server/mod.rs +1 -0
- perspective_python-4.1.1/src/server/virtual_server_sync.rs +549 -0
- perspective_python-4.0.1/perspective_python-4.0.1.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/253.36bec0d7805c88a1a9e0.js +0 -16
- perspective_python-4.0.1/perspective_python-4.0.1.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/523.3bed59a0a88940832f98.js +0 -1
- perspective_python-4.0.1/perspective_python-4.0.1.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/remoteEntry.ae4df995a1ddcfc2727b.js +0 -1
- {perspective_python-4.0.1 → perspective_python-4.1.1}/LICENSE.md +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/README.md +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/build.rs +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/docs/index.html +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/docs/lib.md +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/extension/finos-perspective-nbextension.json +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/handlers/__init__.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/handlers/aiohttp.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/handlers/starlette.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/handlers/tornado.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/templates/exported_widget.html.template +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/__init__.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/async/test_async_client.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/async/test_websocket_client.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/core/__init__.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/core/test_async.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/multi_threaded/__init__.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/multi_threaded/test_multi_threaded.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/server/__init__.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/server/test_server.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/server/test_session.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/__init__.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/arrow/date32.arrow +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/arrow/date64.arrow +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/arrow/dict.arrow +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/arrow/dict_update.arrow +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/arrow/int_float_str.arrow +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/arrow/int_float_str_file.arrow +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/arrow/int_float_str_update.arrow +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/object_sequence.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_column_paths.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_delete.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_exception.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_leaks.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_ports.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_remove.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_table.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_table_datetime.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_table_infer.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_table_limit.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_table_numpy.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_table_pandas.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_table_polars.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_to_arrow.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_to_arrow_lz4.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_to_format.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_to_polars.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_update_arrow.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_update_pandas.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_view.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/table/test_view_expression.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/test_dependencies.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/viewer/__init__.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/viewer/test_viewer.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/widget/__init__.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/widget/test_widget.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/tests/widget/test_widget_pandas.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/widget/__init__.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/widget/viewer/__init__.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/widget/viewer/validate.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/widget/viewer/viewer.py +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/perspective/widget/viewer/viewer_traitlets.py +0 -0
- {perspective_python-4.0.1/perspective_python-4.0.1.data → perspective_python-4.1.1/perspective_python-4.1.1.data}/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/install.json +0 -0
- /perspective_python-4.0.1/perspective_python-4.0.1.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/253.36bec0d7805c88a1a9e0.js.LICENSE.txt → /perspective_python-4.1.1/perspective_python-4.1.1.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/253.237a44566dca7b64bf21.js.LICENSE.txt +0 -0
- {perspective_python-4.0.1/perspective_python-4.0.1.data → perspective_python-4.1.1/perspective_python-4.1.1.data}/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/style.js +0 -0
- {perspective_python-4.0.1/perspective_python-4.0.1.data → perspective_python-4.1.1/perspective_python-4.1.1.data}/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/third-party-licenses.json +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/client/mod.rs +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/client/pandas.rs +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/client/polars.rs +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/client/proxy_session.rs +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/client/pyarrow.rs +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/client/update_data.rs +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/py_async.rs +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/py_err.rs +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/server/server_async.rs +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/server/server_sync.rs +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/server/session_async.rs +0 -0
- {perspective_python-4.0.1 → perspective_python-4.1.1}/src/server/session_sync.rs +0 -0
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
[package]
|
|
14
14
|
name = "perspective-python"
|
|
15
|
-
version = "4.
|
|
15
|
+
version = "4.1.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/perspective-dev/perspective"
|
|
@@ -57,13 +57,17 @@ pyo3-build-config = "0.22.6"
|
|
|
57
57
|
python-config-rs = "0.1.2"
|
|
58
58
|
|
|
59
59
|
[dependencies]
|
|
60
|
-
perspective-client = { version = "4.
|
|
61
|
-
perspective-server = { version = "4.
|
|
60
|
+
perspective-client = { version = "4.1.1" }
|
|
61
|
+
perspective-server = { version = "4.1.1" }
|
|
62
|
+
bytes = "1.10.1"
|
|
63
|
+
chrono = "0.4"
|
|
62
64
|
macro_rules_attribute = "0.2.0"
|
|
63
65
|
async-lock = "2.5.0"
|
|
64
66
|
pollster = "0.3.0"
|
|
65
67
|
extend = "1.1.2"
|
|
68
|
+
indexmap = "2.2.6"
|
|
66
69
|
futures = "0.3.28"
|
|
70
|
+
serde = { version = "1.0" }
|
|
67
71
|
pyo3 = { version = "0.25.1", features = [
|
|
68
72
|
"experimental-async",
|
|
69
73
|
"extension-module",
|