Skip to content

Releases: cltk/cltk

v2.0.0a3

v2.0.0a3 Pre-release
Pre-release

Choose a tag to compare

@kylepjohnson kylepjohnson released this 21 Sep 19:41
increment version

v1.5.0

Choose a tag to compare

@clemsciences clemsciences released this 04 May 21:33

Version 1.5.0

Installation

Install the new release with pip install cltk==1.5.0.

Changes

  • Updated stanza that fixed an issue with torch (#1277).
  • Removed stringcase because it is no longer maintained (#1276).
  • Support Python 3.12 (#1277).

v1.4.0

Choose a tag to compare

@clemsciences clemsciences released this 04 May 21:24

Version 1.4.0

Installation

Install the new release with pip install cltk==1.4.0.

Changes

v1.3.0

Choose a tag to compare

@clemsciences clemsciences released this 12 May 23:08
7014616

Version 1.3.0

Installation

Install the new release with pip install cltk==1.3.0.

Changes

OdyCy code example:

from cltk.languages.example_texts import get_example_text
spacy_wrapper: SpacyWrapper = SpacyWrapper(language="grc")
greek_spacy_doc: SpacyDoc = spacy_wrapper.parse(get_example_text("grc"))
for token in greek_spacy_doc.doc:
    print(token.orth_, token.lemma_,token.is_stop, token.pos_, token.morph, token.dep_, token.head)

v1.2.6

Choose a tag to compare

@clemsciences clemsciences released this 13 May 16:48
34129c4

Version 1.2.6

Installation

Install the new release with pip install cltk==1.2.6.

Changes

v1.2.5

Choose a tag to compare

@clemsciences clemsciences released this 13 May 07:53
8ea1b26

Version 1.2.5

Installation

Install the new release with pip install cltk==1.2.5.

Changes

See full changelog here

v1.2.2

Choose a tag to compare

@clemsciences clemsciences released this 13 May 07:53

Version 1.2.2

Installation

Install the new release with pip install cltk==1.2.2.

Changes

New Contributors

See full changelog here.

v1.2.1

Choose a tag to compare

@kylepjohnson kylepjohnson released this 27 Dec 08:38
3ee2d9b

Version 1.2.1

Installation

Install the new release with pip install cltk==1.2.1.

Changes

  • Updated mypy.
  • Improved printing of CLTK version.

v1.2.0

Choose a tag to compare

@kylepjohnson kylepjohnson released this 27 Dec 08:05
cdc278e

Version 1.2.0

Installation

Install the new release with pip install cltk==1.2.0.

Changes

  • Updated spaCy to version 3.7.2.
  • Added a spaCy wrapper #1195 #1239. A spaCy model can be used to parse a text and the data can be translated from a spaCy's Doc to a list of CLTK's Word.
  • LatinCy has been integrated to CLTK as the first spaCy model. This is the default model for spaCy model in Latin #1239.
  • Breaking change Renamed two files that lead to wrong imports:
    • Before: from cltk.dependency.stanza import StanzaWrapper
    • After: from cltk.dependency.stanza_wrapper import StanzaWrapper, from cltk.dependency.spacy_wrapper import SpacyWrapper

1.1.7

Choose a tag to compare

@clemsciences clemsciences released this 04 Nov 10:32

Version 1.1.7

Installation

Install the new release with pip install cltk==1.1.7 or just pip install cltk if it is still the last release of cltk.

Changes:

  • Breaking change Python 3.8 not supported anymore.
  • Python 3.11 now supported. Fix #1224.
  • Removed python-Levenshtein and replaced it by rapidfuzz.
  • Updaded stanza to 1.6.0. This leads to new versions of trained models and new values of morpho-syntactic features. Fix #1235, #1232, #1229.
  • Updated spacy to 3.6.1. A wrapper for spaCy models will come for the next release.
  • Updated other packages #1233.
  • More type annotations were added.
  • Breaking change Fixed typo from PrononimalType to PronominalType.