From 283bae490bd88f099f3cfe0b657e85c428c49a8c Mon Sep 17 00:00:00 2001 From: Scisco Date: Mon, 26 Oct 2015 15:04:44 -0400 Subject: [PATCH 1/2] add missing package to setup.py --- CHANGES.txt | 4 ++++ setup.py | 3 ++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGES.txt b/CHANGES.txt index 26788b7..e5aadcc 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -1,6 +1,10 @@ Changes ======= +0.9.1 (2015-10-26) +------------------ +- Add missing package (polyline) to setup.py + 0.9.0 (2015-10-23) ------------------ - Improved pansharpening diff --git a/setup.py b/setup.py index 4395dab..e4afc11 100644 --- a/setup.py +++ b/setup.py @@ -44,7 +44,8 @@ def readme(): 'scipy>=0.16.0', 'scikit-image>=0.11.3', 'homura>=0.1.2', - 'boto>=2.38.0' + 'boto>=2.38.0', + 'polyline==1.1' ], test_suite='nose.collector', tests_require=test_requirements From 8f97f0668d2aa603ff5949ed6a11b87c2af129ea Mon Sep 17 00:00:00 2001 From: Scisco Date: Mon, 26 Oct 2015 15:04:58 -0400 Subject: [PATCH 2/2] bump up version to 0.9.1 --- landsat/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/landsat/__init__.py b/landsat/__init__.py index e4e49b3..8969d49 100644 --- a/landsat/__init__.py +++ b/landsat/__init__.py @@ -1 +1 @@ -__version__ = '0.9.0' +__version__ = '0.9.1'