Skip to content

bitig 0.3.1

Latest

Choose a tag to compare

@fatihbozdag fatihbozdag released this 07 Jun 22:09
941231c

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 both spacy-stanza>=1.0.4 and stanza>=1.8, but spacy-stanza 1.0.4 (its last release) caps stanza<1.7.0, so the two constraints were mutually exclusive and pip install "bitig[turkish]" failed with "No solution found". The extra is now pinned to the compatible chain spacy-stanza 1.0.4, stanza 1.6.x, torch <2.6.
  • Turkish model loading under modern PyTorch. torch>=2.6 flips torch.load to weights_only=True, which rejects the numpy global in Stanza's Turkish checkpoint. Capping torch<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.