From debe641993831acca723192584fb99a45285e6f5 Mon Sep 17 00:00:00 2001 From: Jakub Date: Wed, 4 Mar 2020 17:23:30 +0100 Subject: [PATCH] Update setup.py Update package requirements to be higher than `>=` rather than specific `==` --- setup.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/setup.py b/setup.py index 51f89ee..a8b7fde 100644 --- a/setup.py +++ b/setup.py @@ -7,11 +7,11 @@ def main(): extras = { 'bots': ['python-telegram-bot'], - 'hpo': ['scikit-optimize==0.5.2', 'scipy'], - 'monitoring': ['scikit-optimize==0.5.2', 'sacred==0.7.5', 'scikit-learn==0.21.3', - 'scikit-plot==0.3.7', 'seaborn==0.8.1', 'aif360==0.2.1'], + 'hpo': ['scikit-optimize>=0.5.2', 'scipy'], + 'monitoring': ['scikit-optimize>=0.5.2', 'sacred>=0.7.5', 'scikit-learn>=0.21.3', + 'scikit-plot>=0.3.7', 'seaborn>=0.8.1', 'aif360>=0.2.1'], 'versioning': ['boto3', 'numpy'], - 'viz': ['altair==2.3.0', 'hiplot>=0.1.5'], + 'viz': ['altair>=2.3.0', 'hiplot>=0.1.5'], } all_deps = [] @@ -19,7 +19,7 @@ def main(): all_deps += extras[group_name] extras['all'] = all_deps - base_libs = ['attrdict==2.0.0', 'neptune-client', 'joblib==0.13', 'pandas', 'matplotlib', 'Pillow>=6.2.0'] + base_libs = ['attrdict>=2.0.0', 'neptune-client', 'joblib>=0.13', 'pandas', 'matplotlib', 'Pillow>=6.2.0'] setup( name='neptune-contrib',