Skip to content

Commit

Permalink
Merge pull request #1613 from rhattersley/v1.7.4
Browse files Browse the repository at this point in the history
Prepare v1.7.4
  • Loading branch information
pelson committed Apr 9, 2015
2 parents 0a4feaf + 781ef4e commit f70029e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/iris/src/whatsnew/1.7.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ What's new in Iris 1.7
**********************

:Release: 1.7.4
:Date: ???
:Date: 31st March 2015

Iris 1.7 features
=================
Expand Down
2 changes: 1 addition & 1 deletion lib/iris/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def callback(cube, field, filename):


# Iris revision.
__version__ = '1.7.4rc1'
__version__ = '1.7.4'

# Restrict the names imported when using "from iris import *"
__all__ = ['load', 'load_cube', 'load_cubes', 'load_raw',
Expand Down
4 changes: 2 additions & 2 deletions lib/iris/tests/unit/fileformats/pp/test__create_field_data.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# (C) British Crown Copyright 2013 - 2014, Met Office
# (C) British Crown Copyright 2013 - 2015, Met Office
#
# This file is part of Iris.
#
Expand Down Expand Up @@ -56,7 +56,7 @@ def test_deferred_bytes(self):
dtype = mock.Mock(newbyteorder=newbyteorder)
deferred_bytes = (fname, position, n_bytes, dtype)
field = mock.Mock(_data=deferred_bytes)
data_shape = (mock.sentinel.lat, mock.sentinel.lon)
data_shape = (100, 120)
land_mask = mock.Mock()
proxy = mock.Mock(dtype=mock.sentinel.dtype, shape=data_shape)
# We can't directly inspect the concrete data source underlying
Expand Down

0 comments on commit f70029e

Please sign in to comment.