jp-idwr-db 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.
@@ -0,0 +1,18 @@
1
+ __pycache__/
2
+ *.pyc
3
+ *.pyo
4
+ *.pyd
5
+ .venv/
6
+ .uv/
7
+ .ruff_cache/
8
+ .mypy_cache/
9
+ .pytest_cache/
10
+ .coverage
11
+ .dist/
12
+ build/
13
+ dist/
14
+ *.egg-info/
15
+ *.DS_Store
16
+ .pypirc
17
+ .env
18
+ dist-data/
@@ -0,0 +1,23 @@
1
+ # Changelog
2
+
3
+ ## 0.2.2 - 2026-02-06
4
+
5
+ - Fixed PyPI publish command in release workflow for current `uv` (`uv publish dist/*`).
6
+
7
+ ## 0.2.1 - 2026-02-06
8
+
9
+ - Fixed release workflow validation issue and simplified current publish path to PyPI token-based mode.
10
+
11
+ ## 0.2.0 - 2026-02-06
12
+
13
+ - Switched packaged data delivery to GitHub Release assets with runtime caching.
14
+ - Added checksum-verified data manager and CLI prefetch (`python -m jp_idwr_db data download`).
15
+ - Removed parquet payload from wheels and added release asset build/publish workflow.
16
+ - Added CI smoke checks for wheel install/runtime data loading and data-manager tests.
17
+
18
+ ## 0.1.0 - 2026-02-06
19
+
20
+ - First public release under the new package name `jp-idwr-db`.
21
+ - Independent data-engineering scope (inspired by `jpinfect`, not API parity).
22
+ - Historical + modern IDWR ingestion, including sentinel (`teitenrui`) archives from 2012+.
23
+ - Bundled parquet datasets (`sex`, `place`, `bullet`, `sentinel`, `unified`) and Polars-first API.
@@ -0,0 +1,16 @@
1
+ cff-version: 1.2.0
2
+ message: "If you use jp-idwr-db, please cite this project and the upstream jpinfect package that inspired it."
3
+ title: "jp-idwr-db: Japanese IDWR infectious disease database toolkit"
4
+ version: 0.1.0
5
+ license: GPL-3.0-or-later
6
+ repository-code: "https://github.com/AlFontal/jp-idwr-db"
7
+ url: "https://github.com/AlFontal/jp-idwr-db"
8
+ authors:
9
+ - name: "jp-idwr-db contributors"
10
+ references:
11
+ - type: software
12
+ title: "jpinfect: infectious disease surveillance data for Japan"
13
+ authors:
14
+ - name: "Tomonori Hoshi"
15
+ url: "https://github.com/TomonoriHoshi/jpinfect"
16
+ license: GPL-3.0