lets-plot 4.5.2.dev1__cp310-cp310-macosx_11_0_arm64.whl → 4.6.0__cp310-cp310-macosx_11_0_arm64.whl

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.

Potentially problematic release.


This version of lets-plot might be problematic. Click here for more details.

@@ -13,6 +13,7 @@ from .geom_extras import *
13
13
  from .geom_function_ import *
14
14
  from .geom_imshow_ import *
15
15
  from .geom_livemap_ import *
16
+ from .ggbunch_ import *
16
17
  from .gggrid_ import *
17
18
  from .ggtb_ import *
18
19
  from .guide import *
@@ -56,6 +57,7 @@ __all__ = (coord.__all__ +
56
57
  annotation.__all__ +
57
58
  marginal_layer.__all__ +
58
59
  font_features.__all__ +
60
+ ggbunch_.__all__ +
59
61
  gggrid_.__all__ +
60
62
  ggtb_.__all__ +
61
63
  expand_limits_.__all__
lets_plot/plot/core.py CHANGED
@@ -706,7 +706,7 @@ class LayerSpec(FeatureSpec):
706
706
  map_data_meta = {'georeference': {}}
707
707
  else:
708
708
  # Fetch proper GeoDataFrame. Further processing is the same as if map was a GDF.
709
- if name in ['point', 'pie', 'text', 'livemap']:
709
+ if name in ['point', 'pie', 'text', 'label', 'livemap']:
710
710
  map = map.get_centroids()
711
711
  elif name in ['map', 'polygon']:
712
712
  map = map.get_boundaries()