perspective-python 5.3.0__tar.gz → 5.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-5.3.0 → perspective_python-5.4.0}/Cargo.toml +8 -8
- {perspective_python-5.3.0 → perspective_python-5.4.0}/LICENSE_THIRDPARTY_cargo.yml +441 -3212
- {perspective_python-5.3.0 → perspective_python-5.4.0}/PKG-INFO +1 -1
- {perspective_python-5.3.0 → perspective_python-5.4.0}/package.json +1 -1
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/__init__.py +1 -1
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/multi_threaded/test_multi_threaded.py +55 -1
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_column_paths.py +1 -1
- perspective_python-5.4.0/perspective/tests/table/test_on_remove.py +140 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_view_expression.py +117 -3
- perspective_python-5.4.0/perspective/tests/virtual_servers/test_postgres.py +963 -0
- perspective_python-5.4.0/perspective/virtual_servers/postgres.py +434 -0
- perspective_python-5.4.0/perspective/widget/static/perspective-anywidget.css +1 -0
- perspective_python-5.4.0/perspective/widget/static/perspective-anywidget.js +31 -0
- {perspective_python-5.3.0/perspective_python-5.3.0.data → perspective_python-5.4.0/perspective_python-5.4.0.data}/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/package.json +10 -10
- perspective_python-5.4.0/perspective_python-5.4.0.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/253.4734f0e5ca2af40b1b8e.js +1 -0
- perspective_python-5.4.0/perspective_python-5.4.0.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/523.6c7e5315ccde9f9e9cb5.js +1 -0
- perspective_python-5.3.0/perspective_python-5.3.0.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/remoteEntry.57d582b280a028fc0943.js → perspective_python-5.4.0/perspective_python-5.4.0.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/remoteEntry.fa30613e838c9d22524a.js +1 -1
- {perspective_python-5.3.0 → perspective_python-5.4.0}/pyproject.toml +1 -1
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/client/client_async.rs +101 -49
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/client/client_sync.rs +36 -4
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/client/proxy_session.rs +4 -4
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/client/pyarrow.rs +1 -1
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/client/table_data.rs +7 -7
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/client/update_data.rs +5 -5
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/py_async.rs +9 -4
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/server/generic_sql_model.rs +7 -8
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/server/server_async.rs +2 -2
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/server/server_sync.rs +3 -3
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/server/session_async.rs +3 -3
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/server/session_sync.rs +4 -4
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/server/virtual_server_sync.rs +42 -42
- perspective_python-5.3.0/perspective/widget/static/perspective-anywidget.css +0 -1
- perspective_python-5.3.0/perspective/widget/static/perspective-anywidget.js +0 -32
- perspective_python-5.3.0/perspective_python-5.3.0.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/253.c16ccbbb67e30aba3ad3.js +0 -1
- perspective_python-5.3.0/perspective_python-5.3.0.data/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/523.3b02d2d3e7f04540c43d.js +0 -1
- {perspective_python-5.3.0 → perspective_python-5.4.0}/LICENSE.md +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/README.md +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/build.rs +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/docs/index.html +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/docs/lib.md +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/handlers/__init__.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/handlers/aiohttp.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/handlers/starlette.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/handlers/tornado.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/templates/exported_widget.html.template +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/__init__.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/async/test_async_client.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/async/test_websocket_client.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/conftest.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/core/__init__.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/core/test_async.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/multi_threaded/__init__.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/server/__init__.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/server/test_server.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/server/test_session.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/__init__.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/arrow/date32.arrow +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/arrow/date64.arrow +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/arrow/dict.arrow +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/arrow/dict_update.arrow +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/arrow/int_float_str.arrow +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/arrow/int_float_str_file.arrow +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/arrow/int_float_str_update.arrow +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/object_sequence.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_delete.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_exception.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_join.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_leaks.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_ports.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_remove.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_table.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_table_arrow.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_table_arrow_nested.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_table_datetime.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_table_infer.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_table_limit.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_table_numpy.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_table_page_to_disk.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_table_pandas.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_table_polars.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_table_view_table.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_to_arrow.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_to_arrow_lz4.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_to_format.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_to_polars.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_update.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_update_arrow.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_update_pandas.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/table/test_view.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/test_dependencies.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/viewer/__init__.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/viewer/test_viewer.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/virtual_servers/__init__.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/virtual_servers/test_coerce_types.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/virtual_servers/test_duckdb.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/virtual_servers/test_polars.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/widget/__init__.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/widget/test_anywidget_smoke.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/widget/test_widget.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/widget/test_widget_html_export.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/tests/widget/test_widget_pandas.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/virtual_servers/__init__.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/virtual_servers/clickhouse.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/virtual_servers/duckdb.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/virtual_servers/polars.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/widget/__init__.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/widget/viewer/__init__.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/widget/viewer/viewer.py +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/perspective/widget/viewer/viewer_traitlets.py +0 -0
- {perspective_python-5.3.0/perspective_python-5.3.0.data → perspective_python-5.4.0/perspective_python-5.4.0.data}/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/install.json +0 -0
- {perspective_python-5.3.0/perspective_python-5.3.0.data → perspective_python-5.4.0/perspective_python-5.4.0.data}/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/style.js +0 -0
- {perspective_python-5.3.0/perspective_python-5.3.0.data → perspective_python-5.4.0/perspective_python-5.4.0.data}/data/share/jupyter/labextensions/@perspective-dev/jupyterlab/static/third-party-licenses.json +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/client/mod.rs +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/client/pandas.rs +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/client/polars.rs +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/lib.rs +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/py_err.rs +0 -0
- {perspective_python-5.3.0 → perspective_python-5.4.0}/src/server/mod.rs +0 -0
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
|
|
13
13
|
[package]
|
|
14
14
|
name = "perspective-python"
|
|
15
|
-
version = "5.
|
|
15
|
+
version = "5.4.0"
|
|
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"
|
|
@@ -54,12 +54,12 @@ crate-type = ["cdylib"]
|
|
|
54
54
|
[build-dependencies]
|
|
55
55
|
cmake = "0.1.58"
|
|
56
56
|
num_cpus = "^1.16.0"
|
|
57
|
-
pyo3-build-config = "0.
|
|
57
|
+
pyo3-build-config = "0.29.0"
|
|
58
58
|
python-config-rs = "0.1.2"
|
|
59
59
|
|
|
60
60
|
[dependencies]
|
|
61
|
-
perspective-client = { version = "5.
|
|
62
|
-
perspective-server = { version = "5.
|
|
61
|
+
perspective-client = { version = "5.4.0" }
|
|
62
|
+
perspective-server = { version = "5.4.0" }
|
|
63
63
|
bytes = "1.10.1"
|
|
64
64
|
chrono = "0.4"
|
|
65
65
|
macro_rules_attribute = "0.2.2"
|
|
@@ -69,20 +69,20 @@ extend = "1.1.2"
|
|
|
69
69
|
indexmap = "2.12.1"
|
|
70
70
|
futures = "0.3.28"
|
|
71
71
|
serde = { version = "1.0" }
|
|
72
|
-
pyo3 = { version = "0.
|
|
72
|
+
pyo3 = { version = "0.29.0", features = [
|
|
73
73
|
"experimental-async",
|
|
74
74
|
"extension-module",
|
|
75
75
|
"serde",
|
|
76
76
|
] }
|
|
77
|
-
pythonize = "0.
|
|
77
|
+
pythonize = "0.29.0"
|
|
78
78
|
tracing = { version = ">=0.1.36" }
|
|
79
79
|
tracing-subscriber = { version = "0.3.15", features = ["env-filter"] }
|
|
80
80
|
|
|
81
81
|
[target.'cfg(target_os="emscripten")'.dependencies]
|
|
82
|
-
pyo3-async-runtimes = { version = "0.
|
|
82
|
+
pyo3-async-runtimes = { version = "0.29.0", features = ["attributes"] }
|
|
83
83
|
|
|
84
84
|
[target.'cfg(not(target_os="emscripten"))'.dependencies]
|
|
85
|
-
pyo3-async-runtimes = { version = "0.
|
|
85
|
+
pyo3-async-runtimes = { version = "0.29.0", features = [
|
|
86
86
|
"attributes",
|
|
87
87
|
"tokio-runtime",
|
|
88
88
|
] }
|