kplot 1.1.26__tar.gz → 1.1.28__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.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.3
2
2
  Name: kplot
3
- Version: 1.1.26
3
+ Version: 1.1.28
4
4
  Summary: a matplotlib wrapper for keyan :-)
5
5
  Author: Keyan Gootkin
6
6
  Author-email: Keyan Gootkin <keyangootkin@gmail.com>
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "kplot"
3
- version = "1.1.26"
3
+ version = "1.1.28"
4
4
  description = "a matplotlib wrapper for keyan :-)"
5
5
  readme = "README.md"
6
6
  authors = [
@@ -44,7 +44,7 @@ def func_video(
44
44
  updater(i)
45
45
  fig.savefig(f"{frames}/{video_name}/{str(i).zfill(ndigits)}.png", dpi=dpi)
46
46
  # make the video
47
- ffmpeg(video_name, source=frames, destination=destination, fps=fps)
47
+ ffmpeg(video_name, source=f"{frames}/{video_name}/", destination=destination, fps=fps)
48
48
  system(f'rm -r {frames}')
49
49
  def line_video(
50
50
  xs, ys,
@@ -3,8 +3,9 @@
3
3
  # !==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==!==
4
4
  from kplot.axes import subplots
5
5
 
6
+ from typing import Optional
6
7
  from collections.abc import Iterable
7
- from kbasic.typing import Number, Optional
8
+ from kbasic.typing import Number
8
9
  from numpy import asarray, hstack, column_stack, newaxis, concatenate, hypot, diff,\
9
10
  nanmin, nanmax, ndarray, log10
10
11
  from matplotlib.figure import Figure
File without changes
File without changes
File without changes
File without changes
File without changes
File without changes