pandas-plots 0.11.1__py3-none-any.whl → 0.11.3__py3-none-any.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.
- pandas_plots/hlp.py +3 -1
- {pandas_plots-0.11.1.dist-info → pandas_plots-0.11.3.dist-info}/METADATA +2 -1
- pandas_plots-0.11.3.dist-info/RECORD +9 -0
- pandas_plots-0.11.1.dist-info/RECORD +0 -9
- {pandas_plots-0.11.1.dist-info → pandas_plots-0.11.3.dist-info}/LICENSE +0 -0
- {pandas_plots-0.11.1.dist-info → pandas_plots-0.11.3.dist-info}/WHEEL +0 -0
- {pandas_plots-0.11.1.dist-info → pandas_plots-0.11.3.dist-info}/top_level.txt +0 -0
pandas_plots/hlp.py
CHANGED
@@ -2,6 +2,7 @@ import pandas as pd
|
|
2
2
|
import numpy as np
|
3
3
|
import scipy.stats
|
4
4
|
import importlib.metadata as md
|
5
|
+
from platform import python_version
|
5
6
|
|
6
7
|
from io import BytesIO
|
7
8
|
from matplotlib import pyplot as plt
|
@@ -276,10 +277,11 @@ def show_package_version(packages: list[str] = ["pandas","numpy","duckdb","panda
|
|
276
277
|
None
|
277
278
|
"""
|
278
279
|
items = []
|
280
|
+
items.append(f"🐍 {python_version()}")
|
279
281
|
for item in packages:
|
280
282
|
try:
|
281
283
|
version = md.version(item)
|
282
284
|
items.append(f"📦 {item}: {version}")
|
283
285
|
except md.PackageNotFoundError:
|
284
286
|
items.append(f"❌ {item}: Package not found")
|
285
|
-
print(sep.join(items))
|
287
|
+
print(sep.join(items))
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pandas-plots
|
3
|
-
Version: 0.11.
|
3
|
+
Version: 0.11.3
|
4
4
|
Summary: A collection of helper for table handling and vizualization
|
5
5
|
Home-page: https://github.com/smeisegeier/pandas-plots
|
6
6
|
Author: smeisegeier
|
@@ -26,6 +26,7 @@ Requires-Dist: matplotlib-venn >=0.11.10
|
|
26
26
|
Requires-Dist: seaborn >=0.13.2
|
27
27
|
Requires-Dist: Jinja2 >=3.1.3
|
28
28
|
Requires-Dist: requests >=2.31.0
|
29
|
+
Requires-Dist: numpy <2.0.0
|
29
30
|
|
30
31
|
# pandas-plots
|
31
32
|
|
@@ -0,0 +1,9 @@
|
|
1
|
+
pandas_plots/hlp.py,sha256=Fq6582i4tgKP8H-Ljp6MQLZkEdsUH935oOqkAxwswsA,10149
|
2
|
+
pandas_plots/pls.py,sha256=BzZge7TnECjCs47MZ7P63_y2WU23P9sLaMl7SKB5h1Q,35043
|
3
|
+
pandas_plots/tbl.py,sha256=IhDjn-ZD63af6R9WXLSaVGRXA35YM8BDj3OR_SIjG2M,23360
|
4
|
+
pandas_plots/ven.py,sha256=2x3ACo2vSfO3q6fv-UdDQ0h1SJyt8WChBGgE5SDCdCk,11673
|
5
|
+
pandas_plots-0.11.3.dist-info/LICENSE,sha256=6KQ5KVAAhRaB-JJKpX4cefKvRZRgI7GUPc92_2d31XY,1051
|
6
|
+
pandas_plots-0.11.3.dist-info/METADATA,sha256=Ay9DiTOwW5V0yiga0cChXOx8wwpnjRWusIF1Fy_dZhc,6731
|
7
|
+
pandas_plots-0.11.3.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
|
8
|
+
pandas_plots-0.11.3.dist-info/top_level.txt,sha256=XnaNuIHBqMmCeh_U7nKOYTwFue_SIA0wxuDgdPmnnSk,13
|
9
|
+
pandas_plots-0.11.3.dist-info/RECORD,,
|
@@ -1,9 +0,0 @@
|
|
1
|
-
pandas_plots/hlp.py,sha256=polax8sI3z4fKXzIjmjIvDmgnIs3xpBLf4__HPdW9CM,10069
|
2
|
-
pandas_plots/pls.py,sha256=BzZge7TnECjCs47MZ7P63_y2WU23P9sLaMl7SKB5h1Q,35043
|
3
|
-
pandas_plots/tbl.py,sha256=IhDjn-ZD63af6R9WXLSaVGRXA35YM8BDj3OR_SIjG2M,23360
|
4
|
-
pandas_plots/ven.py,sha256=2x3ACo2vSfO3q6fv-UdDQ0h1SJyt8WChBGgE5SDCdCk,11673
|
5
|
-
pandas_plots-0.11.1.dist-info/LICENSE,sha256=6KQ5KVAAhRaB-JJKpX4cefKvRZRgI7GUPc92_2d31XY,1051
|
6
|
-
pandas_plots-0.11.1.dist-info/METADATA,sha256=LFXFik6-kCkSOiWspbRrQ9m4TXf2f0yFGGoJRclGLJE,6703
|
7
|
-
pandas_plots-0.11.1.dist-info/WHEEL,sha256=cpQTJ5IWu9CdaPViMhC9YzF8gZuS5-vlfoFihTBC86A,91
|
8
|
-
pandas_plots-0.11.1.dist-info/top_level.txt,sha256=XnaNuIHBqMmCeh_U7nKOYTwFue_SIA0wxuDgdPmnnSk,13
|
9
|
-
pandas_plots-0.11.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|