From 05e29c8220591cadca830c7b5d1cc162ca599b7e Mon Sep 17 00:00:00 2001 From: Alberto Rivas Date: Tue, 2 Nov 2021 18:40:36 -0500 Subject: [PATCH] upgraded dask requirement to avoid security vulnerability (#2) Co-authored-by: Alberto --- README.md | 2 +- requirements.txt | 2 +- seeq/addons/correlation/_version.py | 2 +- setup.py | 4 ++-- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 71889b0..a813f24 100644 --- a/README.md +++ b/README.md @@ -128,7 +128,7 @@ run `developer_notebook.ipynb` notebook there. # Changelog -The change log can be found [**here**](https://seeq12.github.io/seeq-correlation/changelog.html) +The changelog can be found [**here**](https://seeq12.github.io/seeq-correlation/changelog.html) ---- diff --git a/requirements.txt b/requirements.txt index 1ad25c6..4eaea72 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -dask[complete]==2021.3.0 +dask[complete]>=2021.10.0 ipython==7.21.0 ipyvuetify==1.6.2 ipywidgets==7.6.3 diff --git a/seeq/addons/correlation/_version.py b/seeq/addons/correlation/_version.py index df9144c..10939f0 100644 --- a/seeq/addons/correlation/_version.py +++ b/seeq/addons/correlation/_version.py @@ -1 +1 @@ -__version__ = '0.1.1' +__version__ = '0.1.2' diff --git a/setup.py b/setup.py index bf768bc..7452711 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ include_package_data=True, zip_safe=False, install_requires=[ - 'dask[complete]>=2.18.1', + 'dask[complete]>=2021.10.0', 'ipyvuetify>=1.5.1', 'matplotlib>=3.1.3', 'memoization>=0.2.2', @@ -53,7 +53,7 @@ ], classifiers=[ "Programming Language :: Python :: 3.7", - # "License :: OSI Approved :: MIT License", + "License :: OSI Approved :: Apache Software License", "Operating System :: OS Independent", ], python_requires='>=3.7',