Skip to content

Commit

Permalink
RLS Version 1.4.9
Browse files Browse the repository at this point in the history
BUG Fix FreeImage detection

close #108
  • Loading branch information
luispedro committed Nov 12, 2019
1 parent 044023e commit 0c3cc25
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
Version 1.4.9 2019-11-12 by luispedro
* Fix FreeImage detection (issue #108)

Version 1.4.8 2019-10-11 by luispedro
* Fix co-occurrence matrix computation (patch by @databaaz)

Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,10 @@ questions.

## Recent Changes

### Version 1.4.9 (Nov 12 2019)

- Fix FreeImage detection (issue #108)

### Version 1.4.8 (Oct 11 2019)

- Fix co-occurrence matrix computation (patch by @databaaz)
Expand Down
6 changes: 6 additions & 0 deletions docs/source/history.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@
History
=======

Version 1.4.9 (Nov 12 2019)
~~~~~~~~~~~~~~~~~~~~~~~~~~~

- Fix FreeImage detection (issue #108)


Version 1.4.8 (Oct 11 2019)
~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
3 changes: 2 additions & 1 deletion mahotas/io/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ def error_imsave(*args, **kwargs):
from .pil import imread, imsave
except ImportError:
from .freeimage import imread, imsave
except ImportError: # pragma: no cover
# Importing freeimage can throw both ImportError and OSError, so check for both
except (OSError, ImportError): # pragma: no cover
import sys
_,e,_ = sys.exc_info()
_error_message %= e
Expand Down
2 changes: 1 addition & 1 deletion mahotas/mahotas_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '1.4.8'
__version__ = '1.4.9'

0 comments on commit 0c3cc25

Please sign in to comment.