From f489d568594e01916f30e222522265361f5a9e55 Mon Sep 17 00:00:00 2001 From: Domenico Nappo Date: Wed, 18 Dec 2019 09:55:51 +0100 Subject: [PATCH] adjust requirements and versions #3 --- requirements-dev.txt | 16 ++++++++++++++++ requirements.txt | 6 ++---- setup.py | 6 ++++-- 3 files changed, 22 insertions(+), 6 deletions(-) create mode 100644 requirements-dev.txt diff --git a/requirements-dev.txt b/requirements-dev.txt new file mode 100644 index 0000000..fc18efa --- /dev/null +++ b/requirements-dev.txt @@ -0,0 +1,16 @@ +netCDF4 +ujson +numpy>=1.16.0 +scipy>=0.16.0 +GDAL +numexpr>=2.4.6 +eccodes-python # replacing old GRIB API + +# profiling +memory_profiler +psutil + +# dask packages for parallel interpolation +dask[bag] +dask[array] +toolz diff --git a/requirements.txt b/requirements.txt index 9ca48af..d754e74 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,12 +1,10 @@ netCDF4 ujson -numpy>=1.17 +numpy>=1.16.0 scipy>=0.16.0 GDAL -memory_profiler -psutil numexpr>=2.4.6 -eccodes-python # replacing old GRIB API +# eccodes-python # replacing old GRIB API # dask packages for parallel interpolation dask[bag] diff --git a/setup.py b/setup.py index 6fbde0c..1852936 100644 --- a/setup.py +++ b/setup.py @@ -74,8 +74,10 @@ def setup_data_files(setup_args_): setup_args_.update({'data_files': data_files}) -packages_deps = ['ujson', 'numpy>1.17.0', 'scipy>=0.16', 'eccodes-python', - 'numexpr>=2.4.6', 'dask[bag]', 'dask[array]', 'toolz'] +packages_deps = ['ujson', + 'numpy>=1.16.0', 'scipy>=0.16', 'numexpr>=2.4.6', 'netCDF4', + # 'eccodes-python', + 'dask[bag]', 'dask[array]', 'toolz'] setup_args = dict(name='pyg2p', version=__version__,