π Chunklet-py v2.3.1 - Patch Release
Quick patch release to fix a couple of Things That Should Have Worked.
π What's Fixed
Android Detection (Actually Fixed This Time)
v2.3.0 tried to detect Android with platform_system markers. Problem: Android reports as 'Linux', not 'Android' β so nobody was getting the right sentencex version. Fixed now with sys_platform + platform_machine markers.
Side effect: ARM Linux devices (Raspberry Pi, etc.) also get the legacy sentencex<=0.6.1 without Rust bindings. Temporary workaround until we figure out a better detection method.
DotDict TypeError
Using DotDict() without arguments threw TypeError on dotdict3 < 1.4.2. Now using DotDict({}) for backward compatibility.