From e28afb0bb2465614aac1f8396fbe16d33f961375 Mon Sep 17 00:00:00 2001 From: Duncan Johnstone Date: Tue, 16 Jul 2019 12:48:25 +0100 Subject: [PATCH 1/3] update matplotlib requirement --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 0569ba60..76d53850 100644 --- a/setup.py +++ b/setup.py @@ -49,7 +49,7 @@ 'scipy>=0.15', 'numpy>=1.10', 'scikit-image==0.15.0', - 'matplotlib==3.0.3', + 'matplotlib>=3.1.1', 'tqdm>=0.4.9', 'transforms3d', 'diffpy.structure>=3.0.0' # First Python 3 support From ba9b7d5012c38229075974fe050152eeccc7feae Mon Sep 17 00:00:00 2001 From: Duncan Johnstone Date: Tue, 16 Jul 2019 12:49:41 +0100 Subject: [PATCH 2/3] remove scikit-image from install_requires --- setup.py | 1 - 1 file changed, 1 deletion(-) diff --git a/setup.py b/setup.py index 76d53850..0acf1d55 100644 --- a/setup.py +++ b/setup.py @@ -48,7 +48,6 @@ install_requires=[ 'scipy>=0.15', 'numpy>=1.10', - 'scikit-image==0.15.0', 'matplotlib>=3.1.1', 'tqdm>=0.4.9', 'transforms3d', From deaec283b90815fb122947ac34f39bf7b8e2e78f Mon Sep 17 00:00:00 2001 From: Duncan Johnstone Date: Tue, 16 Jul 2019 12:50:21 +0100 Subject: [PATCH 3/3] bump version to 0.1.3 --- diffsims/version.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/diffsims/version.py b/diffsims/version.py index b88b6400..8fd1c5ad 100644 --- a/diffsims/version.py +++ b/diffsims/version.py @@ -2,7 +2,7 @@ __copyright__ = "Copyright 2017-2019, Diffraction Simulations in Python" __credits__ = ["Duncan Johnstone", "Phillip Crout", "Ben Martineau", "Simon Hogas"] __license__ = "GPL" -__version__ = "0.1.2" +__version__ = "0.1.3" __maintainer__ = "Duncan Johnstone" __email__ = "dnj23@cam.ac.uk" __status__ = "Development"