From f041d57c719ffda4e4b2def846a79236752ffc75 Mon Sep 17 00:00:00 2001 From: Marcel Loose Date: Mon, 9 Aug 2021 18:58:00 +0200 Subject: [PATCH 1/2] Fix version requirements Removed needlessly stringest version requirements on scipy and matplotlib. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 731c752..d5a0c35 100755 --- a/setup.py +++ b/setup.py @@ -72,7 +72,7 @@ def run(self): ], tests_require=['pytest'], install_requires=['numpy>=1.9', 'cython', 'numexpr>=2.0', 'tables>=3.4', 'configparser', - 'scipy>=1.0,<1.6', 'matplotlib>=3.0,<3.4', 'python-casacore>=3.0', 'progressbar'], + 'scipy', 'matplotlib', 'python-casacore>=3.0', 'progressbar'], scripts=['bin/losoto', 'bin/H5parm_split.py', 'bin/H5parm2parmdb.py', 'bin/parmdb2H5parm.py', 'bin/killMS2H5parm.py', 'bin/H5parm_collector.py', 'bin/H5parm_copy.py', 'bin/H5parm_interpolator.py'], From 11a2a132bb0a0ede39c29deda446bd8ea3c1bff2 Mon Sep 17 00:00:00 2001 From: Marcel Loose Date: Mon, 9 Aug 2021 19:04:09 +0200 Subject: [PATCH 2/2] Update _version.py Bump version patch level, so that we can create a new release on PyPI. --- losoto/_version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/losoto/_version.py b/losoto/_version.py index cb442d9..d18b9a1 100644 --- a/losoto/_version.py +++ b/losoto/_version.py @@ -4,7 +4,7 @@ """ # Version number -__version__ = '2.2' +__version__ = '2.2.1' # H5parm version __h5parmVersion__ = '1.0'