Skip to content

Commit

Permalink
Merge pull request #894 from Unidata/issue893
Browse files Browse the repository at this point in the history
forgot to include include/membuf.pyx in release source tarball
  • Loading branch information
jswhit authored Mar 8, 2019
2 parents b22fb81 + 3fc3604 commit e5319d3
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
version 1.4.3.2 (tag v1.4.3.2rel)
==================================
* include missing membuf.pyx file in release source tarball.

version 1.4.3.1 (tag v1.4.3.1)
===================================
* fix bug in implementation of NETCDF4_CLASSIC support for parallel IO
Expand Down
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -17,3 +17,4 @@ include netCDF4/_netCDF4.pyx
include netCDF4/utils.py
include include/netCDF4.pxi
include include/mpi-compat.h
include include/membuf.pyx
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
## News
For details on the latest updates, see the [Changelog](https://github.com/Unidata/netcdf4-python/blob/master/Changelog).

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.

03/07/2019: Version [1.4.3.1](https://pypi.python.org/pypi/netCDF4/1.4.3.1) released.
Fixes bug in implementation of NETCDF4_CLASSIC parallel IO support in 1.4.3.

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

__version__ = "1.4.3.1"
__version__ = "1.4.3.2"

# 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 @@ -570,7 +570,7 @@ def _populate_hdf5_info(dirstosearch, inc_dirs, libs, lib_dirs):

setup(name="netCDF4",
cmdclass=cmdclass,
version="1.4.3.1",
version="1.4.3.2",
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 e5319d3

Please sign in to comment.