Skip to content

Commit

Permalink
Update setup.py
Browse files Browse the repository at this point in the history
Update package requirements to be higher than `>=` rather than specific `==`
  • Loading branch information
jakubczakon authored Mar 4, 2020
1 parent e040d5b commit debe641
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,19 +7,19 @@ 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 = []
for group_name in extras:
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',
Expand Down

0 comments on commit debe641

Please sign in to comment.