mgplot 0.2.9__tar.gz → 0.2.10__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.2.9 → mgplot-0.2.10}/CHANGELOG.md +30 -1
- {mgplot-0.2.9 → mgplot-0.2.10}/PKG-INFO +1 -1
- {mgplot-0.2.9 → mgplot-0.2.10}/docs/mgplot/postcovid_plot.html +354 -270
- {mgplot-0.2.9 → mgplot-0.2.10}/docs/mgplot.html +76 -99
- mgplot-0.2.10/docs/search.js +46 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/pyproject.toml +1 -1
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/postcovid_plot.py +59 -37
- {mgplot-0.2.9 → mgplot-0.2.10}/uv.lock +1 -1
- mgplot-0.2.9/docs/search.js +0 -46
- {mgplot-0.2.9 → mgplot-0.2.10}/.gitignore +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/.pylintrc +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/LICENSE +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/README.md +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/build-all.sh +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/build-docs.sh +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/docs/index.html +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/docs/mgplot/bar_plot.html +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/docs/mgplot/finalise_plot.html +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/docs/mgplot/growth_plot.html +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/docs/mgplot/line_plot.html +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/docs/mgplot/revision_plot.html +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/docs/mgplot/run_plot.html +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/docs/mgplot/seastrend_plot.html +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/docs/mgplot/summary_plot.html +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/__init__.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/axis_utils.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/bar_plot.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/colors.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/finalise_plot.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/finalisers.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/growth_plot.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/keyword_checking.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/line_plot.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/lint-all.sh +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/multi_plot.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/py.typed +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/revision_plot.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/run_plot.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/seastrend_plot.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/settings.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/summary_plot.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/src/mgplot/utilities.py +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/test/test.ipynb +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/test/zz-test-data/ocr_rba.csv +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/test/zz-test-data/revisions.csv +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/test/zz-test-data/summary.csv +0 -0
- {mgplot-0.2.9 → mgplot-0.2.10}/uv-upgrade.sh +0 -0
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
Version 0.2.10 - released 20-Jul-2025 (Canberra, Australia)
|
|
2
|
+
|
|
3
|
+
* minor changes
|
|
4
|
+
- version bump to 0.2.10
|
|
5
|
+
- updates to postcovid_plot.py
|
|
6
|
+
- documentation updates
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
1
10
|
Version 0.2.9 - released 19-Jul-2025 (Canberra, Australia)
|
|
2
11
|
|
|
3
12
|
* minor changes
|
|
@@ -7,7 +16,27 @@ Version 0.2.9 - released 19-Jul-2025 (Canberra, Australia)
|
|
|
7
16
|
|
|
8
17
|
---
|
|
9
18
|
|
|
10
|
-
Version 0.2.
|
|
19
|
+
Version 0.2.8 - released 18-Jul-2025 (Canberra, Australia)
|
|
20
|
+
|
|
21
|
+
* minor changes
|
|
22
|
+
- added lint-all.sh script
|
|
23
|
+
- refinements to utilities.py
|
|
24
|
+
- minor code improvements in bar_plot.py, line_plot.py, and finalisers.py
|
|
25
|
+
- documentation updates
|
|
26
|
+
|
|
27
|
+
---
|
|
28
|
+
|
|
29
|
+
Version 0.2.7 - released 17-Jul-2025 (Canberra, Australia)
|
|
30
|
+
|
|
31
|
+
* major changes
|
|
32
|
+
- intensive code linting across all modules
|
|
33
|
+
- significant refactoring in finalisers.py, multi_plot.py, and other core modules
|
|
34
|
+
- improved code quality and consistency
|
|
35
|
+
- documentation regenerated
|
|
36
|
+
|
|
37
|
+
---
|
|
38
|
+
|
|
39
|
+
Version 0.2.6 - released 15-Jul-2025 (Canberra, Australia)
|
|
11
40
|
|
|
12
41
|
* minor changes
|
|
13
42
|
- fixed a glitch where an axhspan was not appearing
|