From abc6df9f6225b58469596d63274a8594d08d54b5 Mon Sep 17 00:00:00 2001 From: Yasser Aleman Gomez Date: Wed, 6 Mar 2024 20:40:05 +0100 Subject: [PATCH] Modifying version number --- HISTORY.rst | 2 +- clabtoolkit/__init__.py | 2 +- requirements_dev.txt | 6 ++++++ setup.cfg | 2 +- setup.py | 4 ++-- 5 files changed, 11 insertions(+), 5 deletions(-) diff --git a/HISTORY.rst b/HISTORY.rst index a475c0c..5b91237 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -2,7 +2,7 @@ History ======= -0.1.0 (2024-03-06) +0.0.1 (2024-03-06) ------------------ * First release on PyPI. diff --git a/clabtoolkit/__init__.py b/clabtoolkit/__init__.py index da7b79e..ec0961d 100644 --- a/clabtoolkit/__init__.py +++ b/clabtoolkit/__init__.py @@ -2,4 +2,4 @@ __author__ = """Yasser Alemán-Gómez""" __email__ = 'yasseraleman@protonmail.com' -__version__ = '0.1.0' +__version__ = '0.0.1' diff --git a/requirements_dev.txt b/requirements_dev.txt index 5e164dd..f620759 100644 --- a/requirements_dev.txt +++ b/requirements_dev.txt @@ -7,6 +7,12 @@ tox==3.14.0 coverage==4.5.4 Sphinx==1.8.5 twine==1.14.0 +numpy>=1.26.1 +pandas>=2.1.0 +scipy>=1.11.0 +nibabel>=5.1.0 + + diff --git a/setup.cfg b/setup.cfg index 74c42a0..3feac85 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.0.1 commit = True tag = True diff --git a/setup.py b/setup.py index e040872..818541b 100644 --- a/setup.py +++ b/setup.py @@ -38,7 +38,7 @@ packages=find_packages(include=['clabtoolkit', 'clabtoolkit.*']), test_suite='tests', tests_require=test_requirements, - url='https://github.com/yasseraleman/clabtoolkit', - version='0.1.0', + url='https://github.com/connectomicslab/clabtoolkit', + version='0.0.1', zip_safe=False, )