Skip to content

Commit

Permalink
bump version, add __version__ (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron authored Oct 13, 2023
1 parent 2ce459f commit 2f77776
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
1 change: 1 addition & 0 deletions lonboard/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
from ._version import __version__
from .layer import PathLayer, ScatterplotLayer, SolidPolygonLayer
from .viz import viz
6 changes: 6 additions & 0 deletions lonboard/_version.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from importlib.metadata import PackageNotFoundError, version

try:
__version__ = version("lonboard")
except PackageNotFoundError:
__version__ = "uninstalled"
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "lonboard"
version = "0.1.0-beta.4"
version = "0.1.0-beta.5"
description = "Extremely fast geospatial data visualization in Python."
authors = ["Kyle Barron <[email protected]>"]
license = "MIT"
Expand Down

0 comments on commit 2f77776

Please sign in to comment.