v2026.7.0
This project has been archived; this is the final release.
All functionality has been merged into reki (the built-intestsource and thereki-test-datacommand). Please migrate to reki — see "Deprecated" below and the Migrating to reki section in the README.
Deprecated
- The entire project is deprecated and archived: its functionality has been merged into
reki; this repository is kept for historical reference only and is no longer maintained.- The
testsource is now built into reki asreki/sources/test.py(discovered via directory scan — no entry point plugin needed); - the command line tool
cedarkit-test-datais replaced by reki's bundledreki-test-datacommand; - the downloader API moved from
cedarkit_test_data.download_gfs_datatoreki.sources.test.download_gfs_data.
- The
- Coexistence warning: if this package remains installed alongside a newer
reki, itsreki.sourcesentry point takes lookup precedence and shadows reki's built-intestsource. Runpip uninstall cedarkit-test-dataafter migrating.
Added
- New reki
testsource (TestSource): registered in thereki.sourcesentry point group, soreki.from_source("test", "gfs", ...)fetches the CMA-GFS test data file and opens it through reki's reader dispatch once this package is installed. TestSourceis markedremote = True: the test data download (remote I/O) is deferred to first use — callingfrom_source()alone never fires a network request.
Changed
- WIS downloads now use the shared
download_filehelper from reki'surlsource: existing files are reused (idempotent) and interrupted downloads are never mistaken for complete files. - Test dependencies moved from optional extras to dependency-groups (
uv pip install --group test). - Updated LICENSE year and project badges.
Migration guide (summary)
# Python API: same call, works out of the box with reki
import reki
data = reki.from_source("test", "gfs", output_dir="./data")
field = data.to_xarray(parameter="t", level_type="pl", level=850)# Command line
# before: cedarkit-test-data download gfs --source wis --output ./data
# after:
reki-test-data download gfs --source wis --output ./data