mgplot 0.1.7__tar.gz → 0.1.8__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 (45) hide show
  1. {mgplot-0.1.7 → mgplot-0.1.8}/CHANGELOG.md +10 -0
  2. {mgplot-0.1.7 → mgplot-0.1.8}/PKG-INFO +1 -1
  3. {mgplot-0.1.7 → mgplot-0.1.8}/build-test.sh +0 -1
  4. mgplot-0.1.8/docs/index.html +7 -0
  5. mgplot-0.1.8/docs/mgplot/bar_plot.html +928 -0
  6. mgplot-0.1.8/docs/mgplot/finalise_plot.html +866 -0
  7. mgplot-0.1.8/docs/mgplot/growth_plot.html +1080 -0
  8. mgplot-0.1.8/docs/mgplot/line_plot.html +747 -0
  9. mgplot-0.1.8/docs/mgplot/postcovid_plot.html +545 -0
  10. mgplot-0.1.8/docs/mgplot/revision_plot.html +390 -0
  11. mgplot-0.1.8/docs/mgplot/run_plot.html +537 -0
  12. mgplot-0.1.8/docs/mgplot/seastrend_plot.html +429 -0
  13. mgplot-0.1.8/docs/mgplot/summary_plot.html +648 -0
  14. mgplot-0.1.8/docs/mgplot.html +2918 -0
  15. mgplot-0.1.8/docs/search.js +46 -0
  16. {mgplot-0.1.7 → mgplot-0.1.8}/pyproject.toml +1 -1
  17. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/bar_plot.py +86 -93
  18. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/finalise_plot.py +105 -71
  19. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/finalisers.py +67 -21
  20. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/growth_plot.py +70 -58
  21. mgplot-0.1.8/src/mgplot/keyword_names.py +177 -0
  22. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/kw_type_checking.py +26 -3
  23. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/line_plot.py +42 -32
  24. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/multi_plot.py +1 -1
  25. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/postcovid_plot.py +26 -15
  26. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/revision_plot.py +11 -5
  27. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/run_plot.py +21 -42
  28. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/seastrend_plot.py +12 -13
  29. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/settings.py +2 -2
  30. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/summary_plot.py +13 -8
  31. {mgplot-0.1.7 → mgplot-0.1.8}/uv.lock +59 -56
  32. {mgplot-0.1.7 → mgplot-0.1.8}/.gitignore +0 -0
  33. {mgplot-0.1.7 → mgplot-0.1.8}/LICENSE +0 -0
  34. {mgplot-0.1.7 → mgplot-0.1.8}/README.md +0 -0
  35. {mgplot-0.1.7 → mgplot-0.1.8}/build-docs.sh +0 -0
  36. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/__init__.py +0 -0
  37. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/axis_utils.py +0 -0
  38. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/colors.py +0 -0
  39. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/lint-all.sh +0 -0
  40. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/py.typed +0 -0
  41. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/test.py +0 -0
  42. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/utilities.py +0 -0
  43. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/zz-test-data/ocr_rba.csv +0 -0
  44. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/zz-test-data/revisions.csv +0 -0
  45. {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/zz-test-data/summary.csv +0 -0
@@ -1,3 +1,13 @@
1
+ Version 0.1.8 - released 10-Jun-2025 (Canberra, Australia)
2
+
3
+ * major changes
4
+ - standardised keyword argument names (in a separate module).
5
+ - provided abbreviations for some keyword argument names.
6
+ - removed legend keyword argument from data plotting functions
7
+ (ie. it is only implemented by finalise_plot())
8
+
9
+ ---
10
+
1
11
  Version 0.1.7 - released 06-Jun-2025 (Canberra, Australia)
2
12
 
3
13
  * major changes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mgplot
3
- Version: 0.1.7
3
+ Version: 0.1.8
4
4
  Summary: mgplot is a time-series/PeriodIndex frontend for matplotlib
5
5
  Project-URL: Repository, https://github.com/bpalmer4/mgplot
6
6
  Project-URL: Homepage, https://github.com/bpalmer4/mgplot
@@ -22,7 +22,6 @@ uv build
22
22
 
23
23
  # --- install new mgplot locally
24
24
  uv sync # install with the development dependencies
25
- uv pip install dist/mgplot*gz # add in the new package
26
25
 
27
26
  # --- build documentation
28
27
  ~/mgplot/build-docs.sh
@@ -0,0 +1,7 @@
1
+ <!doctype html>
2
+ <html>
3
+ <head>
4
+ <meta charset="utf-8">
5
+ <meta http-equiv="refresh" content="0; url=./mgplot.html"/>
6
+ </head>
7
+ </html>