pandas-plots 0.14.1__tar.gz → 0.15.0__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 (23) hide show
  1. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/.gitignore +0 -1
  2. pandas_plots-0.15.0/.python-version +1 -0
  3. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/PKG-INFO +2 -1
  4. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/pyproject.toml +5 -4
  5. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/src/pandas_plots/pls.py +368 -192
  6. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/src/pandas_plots/tbl.py +6 -4
  7. pandas_plots-0.15.0/src/test.ipynb +6208 -0
  8. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/uv.lock +1743 -1614
  9. pandas_plots-0.14.1/src/test.ipynb +0 -5613
  10. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/LICENSE +0 -0
  11. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/README.md +0 -0
  12. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/img/2024-02-13-00-40-27.png +0 -0
  13. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/img/2024-02-14-20-49-00.png +0 -0
  14. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/img/2024-02-19-20-49-52.png +0 -0
  15. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/img/2024-03-02-17-33-43.png +0 -0
  16. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/img/2024-03-24-09-59-32.png +0 -0
  17. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/src/assets/Rplots.pdf +0 -0
  18. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/src/assets/dsich.csv +0 -0
  19. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/src/assets/facets.csv +0 -0
  20. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/src/pandas_plots/__init__.py +0 -0
  21. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/src/pandas_plots/hlp.py +0 -0
  22. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/src/pandas_plots/ven.py +0 -0
  23. {pandas_plots-0.14.1 → pandas_plots-0.15.0}/src/test.r +0 -0
@@ -164,6 +164,5 @@ cython_debug/
164
164
  .DS_Store
165
165
  .env
166
166
  .local
167
- src/csv.ipynb
168
167
  .notes.md
169
168
  **/**.duckdb
@@ -0,0 +1 @@
1
+ 3.11
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pandas-plots
3
- Version: 0.14.1
3
+ Version: 0.15.0
4
4
  Summary: A collection of helper for table handling and visualization
5
5
  Project-URL: Homepage, https://github.com/smeisegeier/pandas-plots
6
6
  Project-URL: Repository, https://github.com/smeisegeier/pandas-plots
@@ -16,6 +16,7 @@ Classifier: Programming Language :: Python :: 3
16
16
  Classifier: Programming Language :: Python :: 3.10
17
17
  Classifier: Topic :: Scientific/Engineering
18
18
  Requires-Python: >=3.10
19
+ Requires-Dist: connection-helper>=0.11.2
19
20
  Requires-Dist: dataframe-image>=0.2.6
20
21
  Requires-Dist: duckdb>=1.3.0
21
22
  Requires-Dist: jinja2>=3.1.4
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "pandas-plots"
3
- version = "0.14.1"
3
+ version = "0.15.0"
4
4
  author_email = "dexterDSDo@googlemail.com"
5
5
  description = "A collection of helper for table handling and visualization"
6
6
  long_description = "file: README.md"
@@ -24,8 +24,8 @@ classifiers = [
24
24
 
25
25
  dependencies = [
26
26
  "pandas>=2.0.0",
27
- "plotly>=6.2",
28
- "kaleido>=1", # needed for plotly export
27
+ "plotly>=6.2", # upgrade from 5.24
28
+ "kaleido>=1", # needed for plotly export, must be manually added
29
29
  "matplotlib>=3.8.2",
30
30
  "matplotlib-venn==0.11.10",
31
31
  "seaborn>=0.13.2",
@@ -35,7 +35,8 @@ dependencies = [
35
35
  "missingno>=0.5.2",
36
36
  "duckdb>=1.3.0",
37
37
  "nbformat>=4.2.0",
38
- "dataframe_image>=0.2.6"
38
+ "dataframe_image>=0.2.6",
39
+ "connection-helper>=0.11.2",
39
40
  ]
40
41
 
41
42
  [project.urls]