From 0102981e102e7ab4eafb12ca39007cc666945245 Mon Sep 17 00:00:00 2001 From: roger Date: Fri, 6 Nov 2020 11:13:14 +0800 Subject: [PATCH 1/3] Moves dependency specification to setup.py and limit h5py version < 3 --- requirements.txt | 6 ------ setup.py | 7 +++++++ 2 files changed, 7 insertions(+), 6 deletions(-) delete mode 100644 requirements.txt diff --git a/requirements.txt b/requirements.txt deleted file mode 100644 index e403325..0000000 --- a/requirements.txt +++ /dev/null @@ -1,6 +0,0 @@ -numpy -scipy -matplotlib -h5py -hickle -pathlib diff --git a/setup.py b/setup.py index e67f951..48033ba 100644 --- a/setup.py +++ b/setup.py @@ -9,4 +9,11 @@ license="MIT", packages=["DataProcessingTools"], package_data={"DataProcessingTools": ["config.json"]}, + install_requires=["numpy", + "scipy", + "matplotlib", + "h5py < 3", + "hickle", + "pathlib"] + ) From bc73ad70f8788cdcf66d553ef5e5597b92dd04d5 Mon Sep 17 00:00:00 2001 From: roger Date: Fri, 6 Nov 2020 11:18:01 +0800 Subject: [PATCH 2/3] Removes requirements from .travis --- .travis.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 6d6f5e2..f2ae876 100644 --- a/.travis.yml +++ b/.travis.yml @@ -10,7 +10,6 @@ before_install: - pip install pytest-ordering==0.5 install: - - pip install -r requirements.txt - pip install . script: From 49a9ff957c1b143fa883b846435fbded2bffa54b Mon Sep 17 00:00:00 2001 From: roger Date: Fri, 6 Nov 2020 11:23:46 +0800 Subject: [PATCH 3/3] Bumps version number --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 48033ba..415527c 100644 --- a/setup.py +++ b/setup.py @@ -1,7 +1,7 @@ from distutils.core import setup setup(name="DataProcessingTools", - version="0.22.0", + version="0.23.0", description="""Tools for processing data with hierarchical organization""", url="https://github.com/grero/DataProcessingTools.git", author="Roger Herikstad",