Skip to content

Commit

Permalink
Release 0x15x1 (#204)
Browse files Browse the repository at this point in the history
* Updated release notes.

* Update version string.

* Remove redundant test skipper: should have been in #200.
  • Loading branch information
pp-mo authored Feb 24, 2020
1 parent b8ec838 commit 12b989b
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 12 deletions.
21 changes: 20 additions & 1 deletion docs/ref/release_notes.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
Release Notes
=============


What's new in iris-grib v0.15
-----------------------------

Expand Down Expand Up @@ -29,7 +30,7 @@ Features
iris_grib.grib_phenom_translation.GRIBCode and represents the parameter code.
When saving, if a cube has a GRIBCode attribute, this determines the parameter code
in the created message(s): This will _override_ any translation from the CF names.

Bug Fixes
^^^^^^^^^

Expand All @@ -42,6 +43,24 @@ Dependencies
* Python 2 is no longer supported


:Release: 0.15.1
:Date: 24 Feb 2020

Bug Fixes
^^^^^^^^^

* Fixed a bug that was causing all field data to be read from file during the
initial cube loading. This occurred since Dask version 2.0, and caused
slow loading and excessive memory use. This problem was shared with UM file
access in Iris : see
https://scitools.org.uk/iris/docs/v2.4.0/whatsnew/2.4.html#bugs-fixed .

Dependencies
^^^^^^^^^^^^

* Now requires Iris version >= 2.4


What's new in iris-grib v0.14
-----------------------------

Expand Down
2 changes: 1 addition & 1 deletion iris_grib/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
from .message import GribMessage


__version__ = '0.16.0dev0'
__version__ = '0.15.1'

__all__ = ['load_cubes', 'save_grib2', 'load_pairs_from_fields',
'save_pairs_from_cube', 'save_messages']
Expand Down
10 changes: 0 additions & 10 deletions iris_grib/tests/integration/load_convert/test_sample_file_loads.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,8 @@
# before importing anything else.
import iris_grib.tests as tests

from unittest import skipIf

import iris

# Skip out tests that fail because the file coding is not yet supported.
# NOTE: now *only* used for the file 'GRIB/y_fastest/y_fast.grib2', as the
# loader does not support X,Y dimensioned data (as opposed to Y,X).
# TODO: fix this, or remove the test.
skip_irisgrib_fails = skipIf(
True, "Current grib2 loader does not support this test(s)."
)

_RESULTDIR_PREFIX = ("integration", "load_convert", "sample_file_loads")


Expand Down

0 comments on commit 12b989b

Please sign in to comment.