Skip to content

Commit

Permalink
Merge pull request #904 from Unidata/v1.5.0.1rel
Browse files Browse the repository at this point in the history
prepare for 1.5.0.1 release to update binary wheels
  • Loading branch information
jswhit authored Apr 1, 2019
2 parents 2521816 + 04a5ebc commit 6f87f28
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 6 deletions.
7 changes: 7 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
version 1.5.0.1 (tag v1.5.0.1rel)
==================================
* binary wheels for linux and macosx rebuilt against netcdf-c 4.6.3 (instead
of 4.4.1.1).
* add read-shared mode (mode='rs'). Significantly speeds up reads of NETCDF3
files (pull request #902).

version 1.5.0 (tag v1.5.0rel)
===============================
* added support for parallel IO in the classic netcdf-3 formats through the
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,10 @@

## News
For details on the latest updates, see the [Changelog](https://github.com/Unidata/netcdf4-python/blob/master/Changelog).

04/02/2019: Version [1.5.0.1](https://pypi.python.org/pypi/netCDF4/1.5.0.1) released. Binary wheels for macos x
and linux rebuilt with netcdf-c 4.6.3 (instead of 4.4.1.1). Added read-shared capability for faster reads
of NETCDF3 files (mode='rs').

03/24/2019: Version [1.5.0](https://pypi.python.org/pypi/netCDF4/1.5.0) released. Parallel IO support for classic
file formats added using the pnetcdf library (contribution from Lars Pastewka, [pull request #897](https://github.com/Unidata/netcdf4-python/pull/897)).
Expand Down
9 changes: 4 additions & 5 deletions netCDF4/_netCDF4.pyx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
"""
Version 1.5.0
Version 1.5.0.1
-------------
- - -
Expand Down Expand Up @@ -1190,7 +1190,7 @@ except ImportError:
# python3: zip is already python2's itertools.izip
pass

__version__ = "1.5.0"
__version__ = "1.5.0.1"

# Initialize numpy
import posixpath
Expand Down Expand Up @@ -2225,9 +2225,8 @@ strings.
else:
if mode == 'rs':
# NC_SHARE is very important for speed reading
# large netcdf3 files with a record dimension.
# Opening as r+s or as implies capability to
# which may be inconsistent with actual access
# large netcdf3 files with a record dimension
# (pull request #902).
ierr = nc_open(path, NC_NOWRITE | NC_SHARE, &grpid)
else:
ierr = nc_open(path, NC_NOWRITE, &grpid)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,7 +584,7 @@ def _populate_hdf5_info(dirstosearch, inc_dirs, libs, lib_dirs):

setup(name="netCDF4",
cmdclass=cmdclass,
version="1.5.0",
version="1.5.0.1",
long_description="netCDF version 4 has many features not found in earlier versions of the library, such as hierarchical groups, zlib compression, multiple unlimited dimensions, and new data types. It is implemented on top of HDF5. This module implements most of the new features, and can read and write netCDF files compatible with older versions of the library. The API is modelled after Scientific.IO.NetCDF, and should be familiar to users of that module.\n\nThis project is hosted on a `GitHub repository <https://github.com/Unidata/netcdf4-python>`_ where you may access the most up-to-date source.",
author="Jeff Whitaker",
author_email="[email protected]",
Expand Down

0 comments on commit 6f87f28

Please sign in to comment.