From 0f7fbcd1716e817ab13d308f7e87f5362dd070e8 Mon Sep 17 00:00:00 2001 From: Kyle Barron Date: Mon, 2 Oct 2023 18:51:34 -0400 Subject: [PATCH] set version to 0.1.0-beta.1 --- lonboard/layer.py | 3 ++- pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/lonboard/layer.py b/lonboard/layer.py index 9c260137..0e1a171a 100644 --- a/lonboard/layer.py +++ b/lonboard/layer.py @@ -13,7 +13,8 @@ class BaseLayer(ipywidgets.Widget): def _repr_keys(self): - # Exclude the table_buffer from the repr + # Exclude the table_buffer from the repr; otherwise printing the buffer will + # often crash the kernel. # TODO: also exclude keys when numpy array? exclude_keys = {"table_buffer"} diff --git a/pyproject.toml b/pyproject.toml index c88c0eea..189d3ff5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "lonboard" -version = "0.1.0" +version = "0.1.0-beta.1" description = "Extremely fast geospatial data visualization in Python." authors = ["Kyle Barron "] readme = "README.md"