Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Incompatibility with older versions of Jupyter
- We're accessing a private _context property, wrap it in a try/catch and just warn if there's an error - Tested against notebook 6.5.6 ```sh pip install deephaven-server notebook==6.5.6 jupyterlab pip install -e ".[test, examples]" jupyter notebook ``` Then running in the Jupyter notebook: ``` from deephaven_server import Server s = Server(jvm_args=["-Dauthentication.psk=iris"]) s.start() from deephaven import empty_table from deephaven_ipywidgets import DeephavenWidget t = empty_table(1000).update("x=i") display(DeephavenWidget(t)) ```
- Loading branch information