Skip to content

Commit

Permalink
bump version to 0.6 (#360)
Browse files Browse the repository at this point in the history
  • Loading branch information
kylebarron committed Feb 13, 2024
1 parent f0410f8 commit 10f02b5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/ecosystem/panel.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def create_map(state="California", cmap=cc.fire, alpha=0.8):
layer = PathLayer.from_geopandas(data, width_min_pixels=0.8)
normalized_scale_rank = (data["scalerank"] - 3) / 9
layer.get_color = apply_continuous_cmap(normalized_scale_rank, palette, alpha=alpha)
map_ = Map(layers=[layer], _height=650)
map_ = Map(layer, _height=650)
return map_


Expand Down
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.6.0-beta.1"
version = "0.6.0"
description = "Python library for fast, interactive geospatial vector data visualization in Jupyter."
authors = ["Kyle Barron <[email protected]>"]
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion tests/test_map.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def test_map_fails_with_unexpected_argument():
layer = ScatterplotLayer.from_geopandas(gdf)

with pytest.raises(TypeError, match="Unexpected keyword argument"):
_map = Map(layers=[layer], unknown_keyword="foo")
_map = Map(layer, unknown_keyword="foo")


def allow_layers_positional_argument():
Expand Down

0 comments on commit 10f02b5

Please sign in to comment.