mgplot 0.1.6__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 (49) hide show
  1. {mgplot-0.1.6 → mgplot-0.1.8}/CHANGELOG.md +18 -0
  2. {mgplot-0.1.6 → mgplot-0.1.8}/PKG-INFO +1 -1
  3. {mgplot-0.1.6 → mgplot-0.1.8}/build-test.sh +0 -1
  4. mgplot-0.1.8/docs/mgplot/bar_plot.html +928 -0
  5. {mgplot-0.1.6 → mgplot-0.1.8}/docs/mgplot/finalise_plot.html +482 -434
  6. mgplot-0.1.8/docs/mgplot/growth_plot.html +1080 -0
  7. {mgplot-0.1.6 → mgplot-0.1.8}/docs/mgplot/line_plot.html +413 -385
  8. {mgplot-0.1.6 → mgplot-0.1.8}/docs/mgplot/postcovid_plot.html +218 -267
  9. {mgplot-0.1.6 → mgplot-0.1.8}/docs/mgplot/revision_plot.html +87 -101
  10. {mgplot-0.1.6 → mgplot-0.1.8}/docs/mgplot/run_plot.html +226 -315
  11. {mgplot-0.1.6 → mgplot-0.1.8}/docs/mgplot/seastrend_plot.html +119 -225
  12. {mgplot-0.1.6 → mgplot-0.1.8}/docs/mgplot/summary_plot.html +289 -282
  13. {mgplot-0.1.6 → mgplot-0.1.8}/docs/mgplot.html +918 -936
  14. mgplot-0.1.8/docs/search.js +46 -0
  15. {mgplot-0.1.6 → mgplot-0.1.8}/pyproject.toml +1 -1
  16. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/__init__.py +6 -6
  17. mgplot-0.1.6/src/mgplot/date_utils.py → mgplot-0.1.8/src/mgplot/axis_utils.py +68 -8
  18. mgplot-0.1.8/src/mgplot/bar_plot.py +309 -0
  19. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/finalise_plot.py +105 -71
  20. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/finalisers.py +116 -88
  21. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/growth_plot.py +158 -122
  22. mgplot-0.1.8/src/mgplot/keyword_names.py +177 -0
  23. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/kw_type_checking.py +39 -4
  24. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/line_plot.py +113 -46
  25. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/multi_plot.py +4 -4
  26. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/postcovid_plot.py +26 -15
  27. mgplot-0.1.8/src/mgplot/revision_plot.py +66 -0
  28. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/run_plot.py +21 -39
  29. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/seastrend_plot.py +12 -13
  30. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/settings.py +3 -3
  31. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/summary_plot.py +13 -6
  32. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/utilities.py +64 -85
  33. {mgplot-0.1.6 → mgplot-0.1.8}/uv.lock +109 -106
  34. mgplot-0.1.6/docs/mgplot/bar_plot.html +0 -504
  35. mgplot-0.1.6/docs/search.js +0 -46
  36. mgplot-0.1.6/src/mgplot/bar_plot.py +0 -116
  37. mgplot-0.1.6/src/mgplot/revision_plot.py +0 -62
  38. {mgplot-0.1.6 → mgplot-0.1.8}/.gitignore +0 -0
  39. {mgplot-0.1.6 → mgplot-0.1.8}/LICENSE +0 -0
  40. {mgplot-0.1.6 → mgplot-0.1.8}/README.md +0 -0
  41. {mgplot-0.1.6 → mgplot-0.1.8}/build-docs.sh +0 -0
  42. {mgplot-0.1.6 → mgplot-0.1.8}/docs/index.html +0 -0
  43. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/colors.py +0 -0
  44. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/lint-all.sh +0 -0
  45. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/py.typed +0 -0
  46. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/test.py +0 -0
  47. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/zz-test-data/ocr_rba.csv +0 -0
  48. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/zz-test-data/revisions.csv +0 -0
  49. {mgplot-0.1.6 → mgplot-0.1.8}/src/mgplot/zz-test-data/summary.csv +0 -0
@@ -1,3 +1,21 @@
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
+
11
+ Version 0.1.7 - released 06-Jun-2025 (Canberra, Australia)
12
+
13
+ * major changes
14
+ - reworked growth_plot so that it used the line_plot()
15
+ and bar_plot() functions.
16
+
17
+ ---
18
+
1
19
  Version 0.1.6 - released 03-Jun-2025 (Canberra, Australia)
2
20
 
3
21
  * minor changes
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mgplot
3
- Version: 0.1.6
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