diff --git a/CHANGELOG.md b/CHANGELOG.md index c8ae530..63715c9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## [Version 2.0.0](https://github.com/dataiku/dss-plugin-graph-analytics/releases/tag/v2.0.0) - Security update - 2026-04 +- Remove support for Python 2.X, 3.6 +- Update dependencies + ## [Version 1.0.5](https://github.com/dataiku/dss-plugin-graph-analytics/releases/tag/v1.0.5) - Feature release - 2025-02 - Add support for more python 3.8, 3.9, 3.10, 3.11 diff --git a/code-env/python/desc.json b/code-env/python/desc.json index accdba5..d4d191b 100755 --- a/code-env/python/desc.json +++ b/code-env/python/desc.json @@ -1,6 +1,5 @@ { "acceptedPythonInterpreters": [ - "PYTHON36", "PYTHON38", "PYTHON39", "PYTHON310", diff --git a/code-env/python/spec/requirements.txt b/code-env/python/spec/requirements.txt old mode 100755 new mode 100644 index 707b658..283d4d9 --- a/code-env/python/spec/requirements.txt +++ b/code-env/python/spec/requirements.txt @@ -1,12 +1,6 @@ -networkx==2.4; python_version < '3.7' -networkx==3.1; python_version > '3.6' -flask==1.1.2; python_version < '3.7' -flask==3.0.3; python_version > '3.6' -matplotlib==3.2.1; python_version < '3.7' -matplotlib==3.7.5; python_version > '3.6' -scipy==1.4.1; python_version < '3.7' -scipy==1.10.1; python_version > '3.6' -simplejson==3.17.0; python_version < '3.7' -simplejson==3.19.3; python_version > '3.6' -python-igraph==0.8.2; python_version < '3.7' -python-igraph==0.11.8; python_version > '3.6' +networkx==3.1 +flask==3.1.3 +matplotlib==3.7.5 +scipy==1.10.1 +simplejson==3.19.3 +python-igraph==0.11.8 diff --git a/plugin.json b/plugin.json index 8f0c721..5f27116 100755 --- a/plugin.json +++ b/plugin.json @@ -1,6 +1,6 @@ { "id": "graph-analytics", - "version": "1.0.5", + "version": "2.0.0", "meta": { "label": "Graph analytics", "description": "Compute graphs features, find clusters and visualize them", diff --git a/tests/python/integration/requirements.txt b/tests/python/integration/requirements.txt index 9c9c9f7..fab7ad0 100644 --- a/tests/python/integration/requirements.txt +++ b/tests/python/integration/requirements.txt @@ -1,4 +1,3 @@ -pandas>=1.0,<1.1 -pytest==6.2.1 +pytest dataiku-api-client -git+git://github.com/dataiku/dataiku-plugin-tests-utils.git@master#egg=dataiku-plugin-tests-utils \ No newline at end of file +git+https://github.com/dataiku/dataiku-plugin-tests-utils.git@master#egg=dataiku-plugin-tests-utils \ No newline at end of file