Skip to content
Commits on Source (4)
version 1.4.3.1 (tag v1.4.3.1 rel)
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
in v1.4.3 release.
......
......@@ -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
......@@ -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.
......
netcdf4-python (1.4.3.2-1~exp1) experimental; urgency=medium
* New upstream release.
-- Bas Couwenberg <sebastic@debian.org> Sat, 09 Mar 2019 08:29:04 +0100
netcdf4-python (1.4.3.1-1~exp1) experimental; urgency=medium
* New upstream release.
......
......@@ -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
......
......@@ -570,7 +570,7 @@ else:
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="jeffrey.s.whitaker@noaa.gov",
......