File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ Version 2.0.0] ( https://github.com/dataiku/dss-plugin-nlp-summarization/releases/tag/v2.0.0 ) - 2026-04
4+
5+ - Updated nltk to the most secure version available to fix several CVEs. Use Python 3.10 and up to have all available security updates
6+ - Removed support for Python 3.7 and lower since they don't have a secure nltk wheel available
7+ - Added support for Python 3.12, 3.13 and 3.14
8+
39## [ Version 1.4.1] ( https://github.com/dataiku/dss-plugin-nlp-summarization/releases/tag/v1.4.1 ) - 2025-12
410
511- Updated warning
Original file line number Diff line number Diff line change 11{
22 "acceptedPythonInterpreters" : [
3- " PYTHON27" ,
4- " PYTHON36" ,
5- " PYTHON37" ,
63 " PYTHON38" ,
74 " PYTHON39" ,
85 " PYTHON310" ,
9- " PYTHON311"
6+ " PYTHON311" ,
7+ " PYTHON312" ,
8+ " PYTHON313" ,
9+ " PYTHON314"
1010 ],
1111 "forceConda" : false ,
1212 "installCorePackages" : true ,
Original file line number Diff line number Diff line change 1- nltk == 3.4.5 ; python_version < '3.8'
2- nltk == 3.8.1 ; python_version >= '3.8'
1+ nltk == 3.9.1 ; python_version == '3.8'
2+ nltk == 3.9.2 ; python_version == '3.9'
3+ nltk == 3.9.4 ; python_version >= '3.10'
4+ packaging ; python_version >= '3.12'
35sumy == 0.8.1 ; python_version < '3.8'
46sumy == 0.11.0 ; python_version >= '3.8'
57pycountry == 19.8.18
6-
Original file line number Diff line number Diff line change 1313# Download punkt resources to the NLTK_HOME cache directory
1414set_env_path ("NLTK_HOME" , "nltk_data" )
1515cache_folder = os .getenv ("NLTK_HOME" )
16- nltk .download ('punkt ' , download_dir = cache_folder )
16+ nltk .download ('punkt_tab ' , download_dir = cache_folder )
Original file line number Diff line number Diff line change 11{
22 "id" : " text-summarization" ,
3- "version" : " 1.4.1 " ,
3+ "version" : " 2.0.0 " ,
44 "meta" : {
55 "label" : " Text Summarization" ,
66 "category" : " NLP" ,
You can’t perform that action at this time.
0 commit comments