babelplot 2024.3__tar.gz → 2024.4__tar.gz

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.
Files changed (37) hide show
  1. {babelplot-2024.3 → babelplot-2024.4}/PKG-INFO +1 -1
  2. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/main.py +3 -3
  3. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/version.py +1 -1
  4. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot.egg-info/PKG-INFO +1 -1
  5. {babelplot-2024.3 → babelplot-2024.4}/MANIFEST.in +0 -0
  6. {babelplot-2024.3 → babelplot-2024.4}/README-COPYRIGHT-utf8.txt +0 -0
  7. {babelplot-2024.3 → babelplot-2024.4}/README-LICENCE-utf8.txt +0 -0
  8. {babelplot-2024.3 → babelplot-2024.4}/README.rst +0 -0
  9. {babelplot-2024.3 → babelplot-2024.4}/documentation/wiki/description.asciidoc +0 -0
  10. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/__init__.py +0 -0
  11. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/backend/catalog/bokeh_.py +0 -0
  12. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/backend/catalog/matplotlib_.py +0 -0
  13. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/backend/catalog/plotly_.py +0 -0
  14. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/backend/catalog/vedo_.py +0 -0
  15. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/backend/helper/creation.py +0 -0
  16. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/backend/helper/validation.py +0 -0
  17. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/backend/specification/backend.py +0 -0
  18. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/backend/specification/runtime.py +0 -0
  19. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/constant/backend.py +0 -0
  20. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/constant/project.py +0 -0
  21. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/extension/enum_.py +0 -0
  22. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/help.py +0 -0
  23. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/specification/dimension.py +0 -0
  24. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/specification/plot.py +0 -0
  25. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/task/show_pyqt6.py +0 -0
  26. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/type/base.py +0 -0
  27. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/type/figure.py +0 -0
  28. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/type/frame.py +0 -0
  29. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot/type/plot.py +0 -0
  30. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot.egg-info/SOURCES.txt +0 -0
  31. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot.egg-info/dependency_links.txt +0 -0
  32. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot.egg-info/requires.txt +0 -0
  33. {babelplot-2024.3 → babelplot-2024.4}/package/babelplot.egg-info/top_level.txt +0 -0
  34. {babelplot-2024.3 → babelplot-2024.4}/pyproject.toml +0 -0
  35. {babelplot-2024.3 → babelplot-2024.4}/requirements.txt +0 -0
  36. {babelplot-2024.3 → babelplot-2024.4}/setup.cfg +0 -0
  37. {babelplot-2024.3 → babelplot-2024.4}/setup.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: babelplot
3
- Version: 2024.3
3
+ Version: 2024.4
4
4
  Summary: A Meta Plotting Library That Speaks Several Backends
5
5
  Home-page: https://src.koda.cnrs.fr/eric.debreuve/babelplot/
6
6
  Author: Eric Debreuve
@@ -88,11 +88,11 @@ def NewPlot(
88
88
  ) -> tuple[figure_t, frame_t, plot_t] | None:
89
89
  """"""
90
90
  if fig_kwargs is None:
91
- fig_kwargs = ({},)
91
+ fig_kwargs = {}
92
92
  if frm_kwargs is None:
93
- frm_kwargs = ({},)
93
+ frm_kwargs = {}
94
94
  if plt_kwargs is None:
95
- plt_kwargs = ({},)
95
+ plt_kwargs = {}
96
96
 
97
97
  figure = NewFigure(
98
98
  *fig_args,
@@ -4,7 +4,7 @@ Contributor(s): Eric Debreuve (eric.debreuve@cnrs.fr) since 2022
4
4
  SEE COPYRIGHT NOTICE BELOW
5
5
  """
6
6
 
7
- __version__ = "2024.3"
7
+ __version__ = "2024.4"
8
8
 
9
9
  """
10
10
  COPYRIGHT NOTICE
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: babelplot
3
- Version: 2024.3
3
+ Version: 2024.4
4
4
  Summary: A Meta Plotting Library That Speaks Several Backends
5
5
  Home-page: https://src.koda.cnrs.fr/eric.debreuve/babelplot/
6
6
  Author: Eric Debreuve
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes