Skip to content

Commit

Permalink
Merge pull request #899 from Unidata/v1.5.0rel
Browse files Browse the repository at this point in the history
prepare for v1.5.0 release
  • Loading branch information
jswhit authored Mar 23, 2019
2 parents f1ce057 + b176d16 commit 270945c
Show file tree
Hide file tree
Showing 7 changed files with 180 additions and 567 deletions.
6 changes: 3 additions & 3 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
current master
===============
version 1.5.0 (tag v1.5.0rel)
===============================
* added support for parallel IO in the classic netcdf-3 formats through the
pnetcdf library.
pnetcdf library (pull request #897).

version 1.4.3.2 (tag v1.4.3.2)
===============================
Expand Down
2 changes: 1 addition & 1 deletion PKG-INFO
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Metadata-Version: 1.1
Name: netCDF4
Version: 1.4.3.2
Version: 1.5.0
Author: Jeff Whitaker
Author-email: jeffrey s whitaker at noaa gov
Home-page: https://github.com/Unidata/netcdf4-python
Expand Down
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
## News
For details on the latest updates, see the [Changelog](https://github.com/Unidata/netcdf4-python/blob/master/Changelog).

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)).

03/08/2019: Version [1.4.3.2](https://pypi.python.org/pypi/netCDF4/1.4.3.2) released.
Include missing membuf.pyx file in source tarball. No need to update if you installed
1.4.3.1 from a binary wheel.
Expand Down
1 change: 1 addition & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<meta http-equiv="refresh" content="0; url=./netCDF4/index.html" />
731 changes: 170 additions & 561 deletions docs/netCDF4/index.html

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion netCDF4/_netCDF4.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -1190,7 +1190,7 @@ except ImportError:
# python3: zip is already python2's itertools.izip
pass

__version__ = "1.4.3.2"
__version__ = "1.5.0"

# Initialize numpy
import posixpath
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.4.3.2",
version="1.5.0",
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 270945c

Please sign in to comment.