Breaking changes
- Update supported Python versions from 3.9 to 3.12.
- Removed support for the
textblob-de
extension. See #25 for more details. - Removed support for accessing
._.polarity
,._.sentiment
,._.subjectivity
, and._.assessments
. Now, only the._.blob
attribute 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
uv
instead ofpoetry
.