Releases: SamEdwardes/spacytextblob
Releases · SamEdwardes/spacytextblob
v5.1.0
v5.0.0
Breaking changes
- Update supported Python versions from 3.9 to 3.12.
- Removed support for the
textblob-deextension. See #25 for more details. - Removed support for accessing
._.polarity,._.sentiment,._.subjectivity, and._.assessments. Now, only the._.blobattribute is exposed. All other textblob attributes should be access through it. For example:._.blob.polarity,._.blob.sentiment,._.blob.subjectivity, and._.blob.sentiment_assessments.assessments. This simplifies the code base and makes it easier to maintain. Lastly, this means that the config option{"blob_only": bool}was removed.
Other changes
- Use
uvinstead ofpoetry.
v4.0.0
- New custom attribute
doc._.blob,span._.blob,token._.blob. - Support for TextBlob extensions (https://textblob.readthedocs.io/en/dev/extensions.html#extensions).
- Docs are build using Material for MkDocs (https://squidfunk.github.io/mkdocs-material/) instead of Docusaurus.