pandas-plots 0.11.2__tar.gz → 0.11.3__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.1
2
2
  Name: pandas-plots
3
- Version: 0.11.2
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
@@ -1,6 +1,6 @@
1
1
  [metadata]
2
2
  name = pandas-plots
3
- version = 0.11.2
3
+ version = 0.11.3
4
4
  author = smeisegeier
5
5
  author_email = dexterDSDo@googlemail.com
6
6
  description = A collection of helper for table handling and vizualization
@@ -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.2
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
File without changes
File without changes