mgplot 0.1.4__tar.gz → 0.1.6__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.4 → mgplot-0.1.6}/CHANGELOG.md +16 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/PKG-INFO +3 -11
- {mgplot-0.1.4 → mgplot-0.1.6}/build-test.sh +7 -6
- {mgplot-0.1.4 → mgplot-0.1.6}/docs/mgplot.html +154 -154
- {mgplot-0.1.4 → mgplot-0.1.6}/pyproject.toml +11 -9
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/kw_type_checking.py +198 -127
- {mgplot-0.1.4 → mgplot-0.1.6}/uv.lock +24 -16
- {mgplot-0.1.4 → mgplot-0.1.6}/.gitignore +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/LICENSE +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/README.md +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/build-docs.sh +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/docs/index.html +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/docs/mgplot/bar_plot.html +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/docs/mgplot/finalise_plot.html +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/docs/mgplot/line_plot.html +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/docs/mgplot/postcovid_plot.html +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/docs/mgplot/revision_plot.html +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/docs/mgplot/run_plot.html +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/docs/mgplot/seastrend_plot.html +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/docs/mgplot/summary_plot.html +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/docs/search.js +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/__init__.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/bar_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/colors.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/date_utils.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/finalise_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/finalisers.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/growth_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/line_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/lint-all.sh +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/multi_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/postcovid_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/py.typed +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/revision_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/run_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/seastrend_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/settings.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/summary_plot.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/test.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/utilities.py +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/zz-test-data/ocr_rba.csv +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/zz-test-data/revisions.csv +0 -0
- {mgplot-0.1.4 → mgplot-0.1.6}/src/mgplot/zz-test-data/summary.csv +0 -0
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
Version 0.1.6 - released 03-Jun-2025 (Canberra, Australia)
|
|
2
|
+
|
|
3
|
+
* minor changes
|
|
4
|
+
- sorted the three remaining pylint issues with the
|
|
5
|
+
kw_type_checking module. Also improved error
|
|
6
|
+
messages in the same module.
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
Version 0.1.5 - released 02-Jun-2025 (Canberra, Australia)
|
|
11
|
+
|
|
12
|
+
* minor changes
|
|
13
|
+
- minor changes to pyproject.toml and build-test.sh
|
|
14
|
+
|
|
15
|
+
---
|
|
16
|
+
|
|
1
17
|
Version 0.1.4 - released 01-Jun-2025 (Canberra, Australia)
|
|
2
18
|
|
|
3
19
|
* minor changes
|
|
@@ -1,24 +1,16 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: mgplot
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.6
|
|
4
4
|
Summary: mgplot is a time-series/PeriodIndex frontend for matplotlib
|
|
5
|
-
Project-URL: Repository, https://github.com/bpalmer4/mgplot
|
|
6
|
-
Project-URL: Homepage, https://github.com/bpalmer4/mgplot
|
|
5
|
+
Project-URL: Repository, https://github.com/bpalmer4/mgplot
|
|
6
|
+
Project-URL: Homepage, https://github.com/bpalmer4/mgplot
|
|
7
7
|
License-File: LICENSE
|
|
8
8
|
Requires-Python: >=3.12
|
|
9
|
-
Requires-Dist: black
|
|
10
9
|
Requires-Dist: matplotlib
|
|
11
|
-
Requires-Dist: mypy
|
|
12
10
|
Requires-Dist: numpy
|
|
13
|
-
Requires-Dist: numpy-typing
|
|
14
11
|
Requires-Dist: pandas
|
|
15
|
-
Requires-Dist: pandas-stubs
|
|
16
12
|
Requires-Dist: pathlib
|
|
17
|
-
Requires-Dist: pdoc
|
|
18
|
-
Requires-Dist: pylint
|
|
19
|
-
Requires-Dist: ruff
|
|
20
13
|
Requires-Dist: tabulate
|
|
21
|
-
Requires-Dist: types-tabulate
|
|
22
14
|
Requires-Dist: typing
|
|
23
15
|
Description-Content-Type: text/markdown
|
|
24
16
|
|
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
# make sure the version number is correct:
|
|
3
3
|
# ~/mgplot/pyproject.toml
|
|
4
4
|
|
|
5
|
-
# --- cd mgplot home and
|
|
5
|
+
# --- cd mgplot home and get ready
|
|
6
6
|
cd ~/mgplot
|
|
7
|
+
uv pip uninstall mgplot
|
|
7
8
|
deactivate
|
|
8
|
-
source .venv/bin/activate
|
|
9
9
|
|
|
10
10
|
# --- clean out the dist folder
|
|
11
11
|
if [ ! -d ./dist ]; then
|
|
@@ -15,13 +15,14 @@ if [ -n "$(ls -A ./dist 2>/dev/null)" ]; then
|
|
|
15
15
|
rm ./dist/*
|
|
16
16
|
fi
|
|
17
17
|
|
|
18
|
-
# ---
|
|
19
|
-
|
|
20
|
-
uv sync
|
|
18
|
+
# --- sync and build
|
|
19
|
+
uv lock --upgrade # --upgrade to get the latest dependencies
|
|
20
|
+
uv sync --no-dev # --no-dev to avoid installing dev dependencies
|
|
21
21
|
uv build
|
|
22
22
|
|
|
23
23
|
# --- install new mgplot locally
|
|
24
|
-
uv
|
|
24
|
+
uv sync # install with the development dependencies
|
|
25
|
+
uv pip install dist/mgplot*gz # add in the new package
|
|
25
26
|
|
|
26
27
|
# --- build documentation
|
|
27
28
|
~/mgplot/build-docs.sh
|