Skip to content

Commit 168e20f

Browse files
authored
Merge pull request #5 from dataiku/chore/update-python-versions
Added support for Python versions 3.8 - 3.11
2 parents 9bd5ebc + 4b722d0 commit 168e20f

File tree

4 files changed

+20
-5
lines changed

4 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## [Version 1.4.0](https://github.com/dataiku/dss-plugin-nlp-summarization/releases/tag/v1.4.0) - Python compatibility - 2023-04
4+
5+
- ✨ Added support for Python versions 3.8, 3.9, 3.10, 3.11
6+
37
## [Version 1.3.0](https://github.com/dataiku/dss-plugin-nlp-summarization/releases/tag/v1.3.0) - UIF & Py3 Compat - 2022-06
48

59
- ✨ Add UIF and Python3 compatibility

code-env/python/desc.json

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
{
2-
"acceptedPythonInterpreters": ["PYTHON27", "PYTHON36", "PYTHON37"],
2+
"acceptedPythonInterpreters": [
3+
"PYTHON27",
4+
"PYTHON36",
5+
"PYTHON37",
6+
"PYTHON38",
7+
"PYTHON39",
8+
"PYTHON310",
9+
"PYTHON311"
10+
],
311
"forceConda": false,
412
"installCorePackages": true,
13+
"corePackagesSet": "AUTO",
514
"installJupyterSupport": false
6-
}
15+
}
Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
nltk==3.4.5
2-
sumy==0.8.1
1+
nltk==3.4.5; python_version < '3.8'
2+
nltk==3.8.1; python_version >= '3.8'
3+
sumy==0.8.1; python_version < '3.8'
4+
sumy==0.11.0; python_version >= '3.8'
35
pycountry==19.8.18
46

plugin.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"id": "text-summarization",
3-
"version": "1.3.0",
3+
"version": "1.4.0",
44
"meta": {
55
"label": "Text Summarization",
66
"category": "Natural Language Processing",

0 commit comments

Comments
 (0)