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.
- {mgplot-0.2.3 → mgplot-0.2.5}/CHANGELOG.md +18 -2
- {mgplot-0.2.3 → mgplot-0.2.5}/PKG-INFO +1 -1
- {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/bar_plot.html +459 -479
- {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/finalise_plot.html +558 -552
- {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/growth_plot.html +409 -448
- {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/line_plot.html +429 -357
- {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/postcovid_plot.html +224 -226
- {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/revision_plot.html +69 -89
- {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/run_plot.html +248 -216
- {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/seastrend_plot.html +94 -119
- {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot/summary_plot.html +496 -417
- {mgplot-0.2.3 → mgplot-0.2.5}/docs/mgplot.html +2591 -2748
- mgplot-0.2.5/docs/search.js +46 -0
- mgplot-0.2.5/pyproject.toml +64 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/__init__.py +35 -49
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/axis_utils.py +46 -70
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/bar_plot.py +18 -21
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/colors.py +20 -11
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/finalise_plot.py +51 -40
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/finalisers.py +83 -71
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/growth_plot.py +25 -28
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/keyword_checking.py +52 -52
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/line_plot.py +33 -24
- mgplot-0.2.5/src/mgplot/lint-all.sh +19 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/multi_plot.py +35 -58
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/postcovid_plot.py +19 -16
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/revision_plot.py +4 -11
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/run_plot.py +23 -13
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/seastrend_plot.py +7 -14
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/settings.py +34 -60
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/summary_plot.py +33 -32
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/utilities.py +47 -43
- mgplot-0.2.5/test/test.ipynb +990 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/uv.lock +41 -41
- mgplot-0.2.3/docs/search.js +0 -46
- mgplot-0.2.3/pyproject.toml +0 -46
- mgplot-0.2.3/src/mgplot/lint-all.sh +0 -21
- mgplot-0.2.3/test/test.ipynb +0 -853
- {mgplot-0.2.3 → mgplot-0.2.5}/.gitignore +0 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/.pylintrc +0 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/LICENSE +0 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/README.md +0 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/build-docs.sh +0 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/build-test.sh +0 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/docs/index.html +0 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/src/mgplot/py.typed +0 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/test/zz-test-data/ocr_rba.csv +0 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/test/zz-test-data/revisions.csv +0 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/test/zz-test-data/summary.csv +0 -0
- {mgplot-0.2.3 → mgplot-0.2.5}/uv-upgrade.sh +0 -0
|
@@ -1,7 +1,23 @@
|
|
|
1
|
-
Version 0.2.
|
|
1
|
+
Version 0.2.5 - released 22-Jun-2025 (Canberra, Australia)
|
|
2
2
|
|
|
3
3
|
* minor changes
|
|
4
|
-
-
|
|
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
|
|