mgplot 0.2.3__tar.gz → 0.2.5__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 (50) hide show
  1. {mgplot-0.2.3 → mgplot-0.2.5}/CHANGELOG.md +18 -2
  2. {mgplot-0.2.3 → mgplot-0.2.5}/PKG-INFO +1 -1
  3. {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/bar_plot.html +459 -479
  4. {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/finalise_plot.html +558 -552
  5. {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/growth_plot.html +409 -448
  6. {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/line_plot.html +429 -357
  7. {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/postcovid_plot.html +224 -226
  8. {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/revision_plot.html +69 -89
  9. {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/run_plot.html +248 -216
  10. {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/seastrend_plot.html +94 -119
  11. {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/summary_plot.html +496 -417
  12. {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot.html +2591 -2748
  13. mgplot-0.2.5/docs/search.js +46 -0
  14. mgplot-0.2.5/pyproject.toml +64 -0
  15. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/__init__.py +35 -49
  16. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/axis_utils.py +46 -70
  17. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/bar_plot.py +18 -21
  18. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/colors.py +20 -11
  19. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/finalise_plot.py +51 -40
  20. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/finalisers.py +83 -71
  21. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/growth_plot.py +25 -28
  22. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/keyword_checking.py +52 -52
  23. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/line_plot.py +33 -24
  24. mgplot-0.2.5/src/mgplot/lint-all.sh +19 -0
  25. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/multi_plot.py +35 -58
  26. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/postcovid_plot.py +19 -16
  27. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/revision_plot.py +4 -11
  28. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/run_plot.py +23 -13
  29. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/seastrend_plot.py +7 -14
  30. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/settings.py +34 -60
  31. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/summary_plot.py +33 -32
  32. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/utilities.py +47 -43
  33. mgplot-0.2.5/test/test.ipynb +990 -0
  34. {mgplot-0.2.3 → mgplot-0.2.5}/uv.lock +41 -41
  35. mgplot-0.2.3/docs/search.js +0 -46
  36. mgplot-0.2.3/pyproject.toml +0 -46
  37. mgplot-0.2.3/src/mgplot/lint-all.sh +0 -21
  38. mgplot-0.2.3/test/test.ipynb +0 -853
  39. {mgplot-0.2.3 → mgplot-0.2.5}/.gitignore +0 -0
  40. {mgplot-0.2.3 → mgplot-0.2.5}/.pylintrc +0 -0
  41. {mgplot-0.2.3 → mgplot-0.2.5}/LICENSE +0 -0
  42. {mgplot-0.2.3 → mgplot-0.2.5}/README.md +0 -0
  43. {mgplot-0.2.3 → mgplot-0.2.5}/build-docs.sh +0 -0
  44. {mgplot-0.2.3 → mgplot-0.2.5}/build-test.sh +0 -0
  45. {mgplot-0.2.3 → mgplot-0.2.5}/docs/index.html +0 -0
  46. {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/py.typed +0 -0
  47. {mgplot-0.2.3 → mgplot-0.2.5}/test/zz-test-data/ocr_rba.csv +0 -0
  48. {mgplot-0.2.3 → mgplot-0.2.5}/test/zz-test-data/revisions.csv +0 -0
  49. {mgplot-0.2.3 → mgplot-0.2.5}/test/zz-test-data/summary.csv +0 -0
  50. {mgplot-0.2.3 → mgplot-0.2.5}/uv-upgrade.sh +0 -0
@@ -1,7 +1,23 @@
1
- Version 0.2.3 - released 20-Jun-2025 (Canberra, Australia)
1
+ Version 0.2.5 - released 22-Jun-2025 (Canberra, Australia)
2
2
 
3
3
  * minor changes
4
- - Implemented more aggressive lining in ruff.
4
+ - Fixed the xlabel thing in finalise_plot().
5
+ - Changed from using Series.plot() to Axes.plot(),
6
+ in line_plot() to avoid pandas setting the
7
+ xlabel/ylabel
8
+ - fixed a labelling error in summary_plot()
9
+ - removed an imposed-legend from run_plot_finalise()
10
+ - added the capacity to label the runs in the run_plot() legend.
11
+ - small number of consequential changes.
12
+
13
+ ---
14
+ Version 0.2.4 - released 21-Jun-2025 (Canberra, Australia)
15
+
16
+ * minor changes
17
+ - Implemented more aggressive code linting in ruff.
18
+ with all but a handful of ruff linting rules
19
+ activated (see pyproject.toml and lint-all.sh)
20
+ - retired pylint and black
5
21
 
6
22
  ---
7
23
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mgplot
3
- Version: 0.2.3
3
+ Version: 0.2.5
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