mgplot 0.2.0__tar.gz → 0.2.2__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 (48) hide show
  1. mgplot-0.2.2/.pylintrc +3 -0
  2. {mgplot-0.2.0 → mgplot-0.2.2}/CHANGELOG.md +11 -2
  3. {mgplot-0.2.0 → mgplot-0.2.2}/PKG-INFO +1 -1
  4. {mgplot-0.2.0 → mgplot-0.2.2}/docs/mgplot/bar_plot.html +354 -378
  5. {mgplot-0.2.0 → mgplot-0.2.2}/docs/mgplot/finalise_plot.html +355 -337
  6. {mgplot-0.2.0 → mgplot-0.2.2}/docs/mgplot/growth_plot.html +22 -26
  7. {mgplot-0.2.0 → mgplot-0.2.2}/docs/mgplot/line_plot.html +184 -212
  8. {mgplot-0.2.0 → mgplot-0.2.2}/docs/mgplot/revision_plot.html +22 -28
  9. {mgplot-0.2.0 → mgplot-0.2.2}/docs/mgplot/run_plot.html +180 -188
  10. {mgplot-0.2.0 → mgplot-0.2.2}/docs/mgplot/seastrend_plot.html +36 -44
  11. {mgplot-0.2.0 → mgplot-0.2.2}/docs/mgplot/summary_plot.html +549 -178
  12. {mgplot-0.2.0 → mgplot-0.2.2}/docs/mgplot.html +571 -587
  13. mgplot-0.2.2/docs/search.js +46 -0
  14. {mgplot-0.2.0 → mgplot-0.2.2}/pyproject.toml +1 -1
  15. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/axis_utils.py +6 -45
  16. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/bar_plot.py +6 -18
  17. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/colors.py +0 -41
  18. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/finalise_plot.py +15 -6
  19. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/finalisers.py +20 -20
  20. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/growth_plot.py +1 -3
  21. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/keyword_checking.py +4 -45
  22. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/line_plot.py +6 -22
  23. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/lint-all.sh +6 -7
  24. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/multi_plot.py +0 -1
  25. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/revision_plot.py +1 -4
  26. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/run_plot.py +8 -17
  27. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/seastrend_plot.py +2 -6
  28. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/settings.py +31 -15
  29. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/summary_plot.py +73 -33
  30. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/utilities.py +15 -16
  31. mgplot-0.2.2/test/test.ipynb +853 -0
  32. {mgplot-0.2.0 → mgplot-0.2.2}/uv.lock +1 -1
  33. mgplot-0.2.0/docs/search.js +0 -46
  34. mgplot-0.2.0/test/test.ipynb +0 -766
  35. {mgplot-0.2.0 → mgplot-0.2.2}/.gitignore +0 -0
  36. {mgplot-0.2.0 → mgplot-0.2.2}/LICENSE +0 -0
  37. {mgplot-0.2.0 → mgplot-0.2.2}/README.md +0 -0
  38. {mgplot-0.2.0 → mgplot-0.2.2}/build-docs.sh +0 -0
  39. {mgplot-0.2.0 → mgplot-0.2.2}/build-test.sh +0 -0
  40. {mgplot-0.2.0 → mgplot-0.2.2}/docs/index.html +0 -0
  41. {mgplot-0.2.0 → mgplot-0.2.2}/docs/mgplot/postcovid_plot.html +0 -0
  42. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/__init__.py +0 -0
  43. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/postcovid_plot.py +0 -0
  44. {mgplot-0.2.0 → mgplot-0.2.2}/src/mgplot/py.typed +0 -0
  45. {mgplot-0.2.0 → mgplot-0.2.2}/test/zz-test-data/ocr_rba.csv +0 -0
  46. {mgplot-0.2.0 → mgplot-0.2.2}/test/zz-test-data/revisions.csv +0 -0
  47. {mgplot-0.2.0 → mgplot-0.2.2}/test/zz-test-data/summary.csv +0 -0
  48. {mgplot-0.2.0 → mgplot-0.2.2}/uv-upgrade.sh +0 -0
mgplot-0.2.2/.pylintrc ADDED
@@ -0,0 +1,3 @@
1
+ [FORMAT]
2
+ max-line-length=120
3
+
@@ -1,11 +1,20 @@
1
- Version 0.2.0 - released 18-Jun-2025 (Canberra,m Australia)
1
+ Version 0.2.1 - released 19-Jun-2025 (Canberra Australia)
2
+
3
+ * minor changes
4
+ - changed linting regime - resulted in numerous minor
5
+ changes.
6
+ - other minor changes
7
+
8
+ ---
9
+
10
+ Version 0.2.0 - released 18-Jun-2025 (Canberra Australia)
2
11
 
3
12
  * minor changes
4
13
  - fixed a glitch with the scaled summary plot
5
14
 
6
15
  ---
7
16
 
8
- Version 0.2.0a2 - released 18-Jun-2025 (Canberra,m Australia)
17
+ Version 0.2.0a2 - released 18-Jun-2025 (Canberra Australia)
9
18
 
10
19
  * major changes
11
20
  - rewrote dynamic type-checking, to leverage static type
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: mgplot
3
- Version: 0.2.0
3
+ Version: 0.2.2
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