Skip to content

Commit 12b989b

Browse files
authored
Release 0x15x1 (#204)
* Updated release notes. * Update version string. * Remove redundant test skipper: should have been in #200.
1 parent b8ec838 commit 12b989b

File tree

3 files changed

+21
-12
lines changed

3 files changed

+21
-12
lines changed

docs/ref/release_notes.rst

+20-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
Release Notes
22
=============
33

4+
45
What's new in iris-grib v0.15
56
-----------------------------
67

@@ -29,7 +30,7 @@ Features
2930
iris_grib.grib_phenom_translation.GRIBCode and represents the parameter code.
3031
When saving, if a cube has a GRIBCode attribute, this determines the parameter code
3132
in the created message(s): This will _override_ any translation from the CF names.
32-
33+
3334
Bug Fixes
3435
^^^^^^^^^
3536

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

4445

46+
:Release: 0.15.1
47+
:Date: 24 Feb 2020
48+
49+
Bug Fixes
50+
^^^^^^^^^
51+
52+
* Fixed a bug that was causing all field data to be read from file during the
53+
initial cube loading. This occurred since Dask version 2.0, and caused
54+
slow loading and excessive memory use. This problem was shared with UM file
55+
access in Iris : see
56+
https://scitools.org.uk/iris/docs/v2.4.0/whatsnew/2.4.html#bugs-fixed .
57+
58+
Dependencies
59+
^^^^^^^^^^^^
60+
61+
* Now requires Iris version >= 2.4
62+
63+
4564
What's new in iris-grib v0.14
4665
-----------------------------
4766

iris_grib/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
from .message import GribMessage
3434

3535

36-
__version__ = '0.16.0dev0'
36+
__version__ = '0.15.1'
3737

3838
__all__ = ['load_cubes', 'save_grib2', 'load_pairs_from_fields',
3939
'save_pairs_from_cube', 'save_messages']

iris_grib/tests/integration/load_convert/test_sample_file_loads.py

-10
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,8 @@
1515
# before importing anything else.
1616
import iris_grib.tests as tests
1717

18-
from unittest import skipIf
19-
2018
import iris
2119

22-
# Skip out tests that fail because the file coding is not yet supported.
23-
# NOTE: now *only* used for the file 'GRIB/y_fastest/y_fast.grib2', as the
24-
# loader does not support X,Y dimensioned data (as opposed to Y,X).
25-
# TODO: fix this, or remove the test.
26-
skip_irisgrib_fails = skipIf(
27-
True, "Current grib2 loader does not support this test(s)."
28-
)
29-
3020
_RESULTDIR_PREFIX = ("integration", "load_convert", "sample_file_loads")
3121

3222

0 commit comments

Comments
 (0)