From 4bc9d47abbd52ee8c9ee11ab7b3d9ecf4a087720 Mon Sep 17 00:00:00 2001 From: shenshan Date: Mon, 1 Mar 2021 23:57:08 +0000 Subject: [PATCH] Fixed version of datajoint to 0.12 --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index fc4dc2f4..6b7033df 100755 --- a/setup.py +++ b/setup.py @@ -5,12 +5,12 @@ here = path.abspath(path.dirname(__file__)) setup( - name='ibl_pipeline', - version='0.2.3', + name='ibl-pipeline', + version='0.2.4', description='Datajoint schemas for IBL', author='Vathes', author_email='support@vathes.com', packages=find_packages(exclude=[]), - install_requires=['datajoint>=0.12', 'ibllib>=1.4.11', 'numpy>=1.18.1', 'seaborn>=0.10.0', 'globus_sdk', 'boto3', 'colorlover', 'scikits.bootstrap', 'statsmodels>=0.10.1', 'plotly>=4.1.0'], + install_requires=['datajoint~=0.12', 'ibllib>=1.4.11', 'numpy>=1.18.1', 'seaborn>=0.10.0', 'globus_sdk', 'boto3', 'colorlover', 'scikits.bootstrap', 'statsmodels>=0.10.1', 'plotly>=4.1.0'], scripts=['scripts/ibl-shell.py'], )