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.
- {mgplot-0.1.7 → mgplot-0.1.8}/CHANGELOG.md +10 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/PKG-INFO +1 -1
- {mgplot-0.1.7 → mgplot-0.1.8}/build-test.sh +0 -1
- mgplot-0.1.8/docs/index.html +7 -0
- mgplot-0.1.8/docs/mgplot/bar_plot.html +928 -0
- mgplot-0.1.8/docs/mgplot/finalise_plot.html +866 -0
- mgplot-0.1.8/docs/mgplot/growth_plot.html +1080 -0
- mgplot-0.1.8/docs/mgplot/line_plot.html +747 -0
- mgplot-0.1.8/docs/mgplot/postcovid_plot.html +545 -0
- mgplot-0.1.8/docs/mgplot/revision_plot.html +390 -0
- mgplot-0.1.8/docs/mgplot/run_plot.html +537 -0
- mgplot-0.1.8/docs/mgplot/seastrend_plot.html +429 -0
- mgplot-0.1.8/docs/mgplot/summary_plot.html +648 -0
- mgplot-0.1.8/docs/mgplot.html +2918 -0
- mgplot-0.1.8/docs/search.js +46 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/pyproject.toml +1 -1
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/bar_plot.py +86 -93
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/finalise_plot.py +105 -71
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/finalisers.py +67 -21
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/growth_plot.py +70 -58
- mgplot-0.1.8/src/mgplot/keyword_names.py +177 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/kw_type_checking.py +26 -3
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/line_plot.py +42 -32
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/multi_plot.py +1 -1
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/postcovid_plot.py +26 -15
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/revision_plot.py +11 -5
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/run_plot.py +21 -42
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/seastrend_plot.py +12 -13
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/settings.py +2 -2
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/summary_plot.py +13 -8
- {mgplot-0.1.7 → mgplot-0.1.8}/uv.lock +59 -56
- {mgplot-0.1.7 → mgplot-0.1.8}/.gitignore +0 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/LICENSE +0 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/README.md +0 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/build-docs.sh +0 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/__init__.py +0 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/axis_utils.py +0 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/colors.py +0 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/lint-all.sh +0 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/py.typed +0 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/test.py +0 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/utilities.py +0 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/zz-test-data/ocr_rba.csv +0 -0
- {mgplot-0.1.7 → mgplot-0.1.8}/src/mgplot/zz-test-data/revisions.csv +0 -0
- {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
|