csv.field_size_limit() is not raised in sinter/_data/_existing_data.py, so reading a CSV with a large custom_counts field triggers
_csv.Error: field larger than field limit (131072)
Adding one line at import time would fix it:
import sys, csv
csv.field_size_limit(sys.maxsize)
(With a small try/except OverflowError loop for 32-bit builds.)
Let me know and I can open a PR with this two-line patch.
Credit: https://github.com/Zihan-Chen-PhMA/Cultiv_T_RP2/blob/main/installation_guide.md