Skip to content

Commit 4ff45d8

Browse files
committed
Updating to version 0.18
1 parent b6dffb5 commit 4ff45d8

File tree

2 files changed

+39
-1
lines changed

2 files changed

+39
-1
lines changed

VERSIONS.txt

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
================================================================================
2+
SPy 0.18
3+
================================================================================
4+
Release date: 2016.06.18
5+
6+
Changes
7+
-------
8+
9+
* Improved handling of ENVI header files:
10+
11+
* If "header offset" is missing, assume the offset is 0.
12+
13+
* Stricter check for "ENVI" in the first line of the file.
14+
15+
* [Issue #42] More-informative exceptions are raised when a problem is
16+
encountered while reading and ENVI header.
17+
18+
* [Issue #46] No longer defaulting `band_quantity` to "Wavelength".
19+
20+
Bug Fixes
21+
---------
22+
23+
* [Issue #38 and #39] The `tostring` method has been deprecated in newer
24+
versions of PIL/Pillow. Using `tobytes` now and falling back to `tostring`
25+
if it fails.
26+
27+
* [Issue #40] An exception was raised when trying to get a pixel's row/col
28+
by CTRL-SHIFT-clicking in the ND window display.
29+
30+
* [Issue #44] Matplotlib was being set to interactive mode even if no SPy
31+
windows were displayed. This would affect behavior of other code using
32+
Matplotlib. Interactive mode is now set only once the first display is
33+
requested.
34+
35+
* [Issue #49] `GaussianClassifier` and `MahalanobisDistanceClassifier` method
36+
`classify_image` was failing when applied to an object that was not a
37+
numpy.ndarray (e.g., a `SpyFile` or `TransformedImage`).
38+
139
================================================================================
240
SPy 0.17
341
================================================================================

spectral/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
from __future__ import division, print_function, unicode_literals
3333

34-
__version__ = '0.17'
34+
__version__ = '0.18'
3535

3636
import sys
3737
if sys.byteorder == 'little':

0 commit comments

Comments
 (0)