lets-plot 4.3.2__cp311-cp311-win_amd64.whl → 4.3.3__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/__init__.py +4 -4
- lets_plot/_version.py +1 -1
- lets_plot/package_data/lets-plot.min.js +1 -1
- lets_plot/plot/core.py +2 -4
- lets_plot/plot/geom.py +2 -1
- lets_plot/plot/geom_livemap_.py +11 -5
- {lets_plot-4.3.2.dist-info → lets_plot-4.3.3.dist-info}/METADATA +191 -192
- {lets_plot-4.3.2.dist-info → lets_plot-4.3.3.dist-info}/RECORD +12 -12
- {lets_plot-4.3.2.dist-info → lets_plot-4.3.3.dist-info}/WHEEL +1 -1
- lets_plot_kotlin_bridge.cp311-win_amd64.pyd +0 -0
- {lets_plot-4.3.2.dist-info → lets_plot-4.3.3.dist-info}/LICENSE +0 -0
- {lets_plot-4.3.2.dist-info → lets_plot-4.3.3.dist-info}/top_level.txt +0 -0
lets_plot/__init__.py
CHANGED
|
@@ -236,7 +236,7 @@ class LetsPlot:
|
|
|
236
236
|
# Show the plot in the Chrome web browser for Windows.
|
|
237
237
|
# This is the default setup path. Replace the file path with your own if it differs.
|
|
238
238
|
from lets_plot import *
|
|
239
|
-
LetsPlot.setup_show_ext(exec
|
|
239
|
+
LetsPlot.setup_show_ext(exec='C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe --app=%s')
|
|
240
240
|
p = ggplot() + geom_point(x=0, y=0)
|
|
241
241
|
p.show()
|
|
242
242
|
|
|
@@ -248,7 +248,7 @@ class LetsPlot:
|
|
|
248
248
|
|
|
249
249
|
# Show the plot in the Safari web browser for macOS.
|
|
250
250
|
from lets_plot import *
|
|
251
|
-
LetsPlot.setup_show_ext(exec
|
|
251
|
+
LetsPlot.setup_show_ext(exec='open -a safari %s')
|
|
252
252
|
p = ggplot() + geom_point(x=0, y=0)
|
|
253
253
|
p.show()
|
|
254
254
|
|
|
@@ -261,7 +261,7 @@ class LetsPlot:
|
|
|
261
261
|
# Show the plot in the Chrome web browser for macOS in the application mode.
|
|
262
262
|
# This is the default setup path. Replace the path with your own if it differs.
|
|
263
263
|
from lets_plot import *
|
|
264
|
-
LetsPlot.setup_show_ext(exec
|
|
264
|
+
LetsPlot.setup_show_ext(exec='/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --app=%s')
|
|
265
265
|
p = ggplot() + geom_point(x=0, y=0)
|
|
266
266
|
p.show()
|
|
267
267
|
|
|
@@ -273,7 +273,7 @@ class LetsPlot:
|
|
|
273
273
|
|
|
274
274
|
# Show the plot in the Chrome web browser for Linux.
|
|
275
275
|
from lets_plot import *
|
|
276
|
-
LetsPlot.setup_show_ext(exec
|
|
276
|
+
LetsPlot.setup_show_ext(exec='google-chrome --app=%s')
|
|
277
277
|
p = ggplot() + geom_point(x=0, y=0)
|
|
278
278
|
p.show()
|
|
279
279
|
|
lets_plot/_version.py
CHANGED