Patch release fixing the turkish optional extra, which was uninstallable in 0.3.0.
pip install --upgrade "bitig[turkish]"
Fixed
bitig[turkish]now resolves. 0.3.0 pinned bothspacy-stanza>=1.0.4andstanza>=1.8, butspacy-stanza1.0.4 (its last release) capsstanza<1.7.0, so the two constraints were mutually exclusive andpip install "bitig[turkish]"failed with "No solution found". The extra is now pinned to the compatible chainspacy-stanza 1.0.4,stanza 1.6.x,torch <2.6.- Turkish model loading under modern PyTorch.
torch>=2.6flipstorch.loadtoweights_only=True, which rejects the numpy global in Stanza's Turkish checkpoint. Cappingtorch<2.6(resolves to 2.5.1) restores loading.
This greens the Multi-language tests workflow, which had been failing on every run. No other user-facing changes from 0.3.0. See #54 and #55.