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 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 = 'C:\\Program Files\\Google\\Chrome\\Application\\chrome.exe --app=%s')
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 = 'open -a safari %s')
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 = '/Applications/Google\\ Chrome.app/Contents/MacOS/Google\\ Chrome --app=%s')
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 = 'google-chrome --app=%s')
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
@@ -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.3.2'
6
+ __version__ = '4.3.3'