lets-plot 4.5.2__cp311-cp311-win_amd64.whl → 4.5.2.dev1__cp311-cp311-win_amd64.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.

lets_plot/_version.py CHANGED
@@ -3,4 +3,4 @@
3
3
  # Use of this source code is governed by the MIT license that can be found in the LICENSE file.
4
4
  #
5
5
  # see: https://www.python.org/dev/peps/pep-0440/#developmental-releases
6
- __version__ = '4.5.2'
6
+ __version__ = '4.5.2.dev1'
@@ -1,8 +1,7 @@
1
1
  # Copyright (c) 2024. JetBrains s.r.o.
2
2
  # Use of this source code is governed by the MIT license that can be found in the LICENSE file.
3
3
 
4
- from lets_plot.plot.core import PlotSpec, aes
5
- from lets_plot.plot.util import as_annotated_data
4
+ from lets_plot.plot.core import PlotSpec
6
5
 
7
6
  __all__ = ['waterfall_plot']
8
7
 
@@ -222,7 +221,6 @@ def waterfall_plot(data, x, y, *,
222
221
  facet_wrap(facets='company', scales='free_x')
223
222
 
224
223
  """
225
- data, mapping, data_meta = as_annotated_data(data, aes(x=x, y=y))
226
224
  return PlotSpec(data=data, mapping=None, scales=[], layers=[], bistro={
227
225
  'name': 'waterfall',
228
226
  'x': x,
@@ -249,4 +247,4 @@ def waterfall_plot(data, x, y, *,
249
247
  'connector': connector,
250
248
  'label': label,
251
249
  'label_format': label_format,
252
- }, **data_meta)
250
+ })