Codebase list netcdf4-python / 846a782
New upstream version 1.4.3.2 Bas Couwenberg 5 years ago
5 changed file(s) with 11 addition(s) and 3 deletion(s). Raw diff Collapse all Expand all
0 version 1.4.3.1 (tag v1.4.3.1 rel)
0 version 1.4.3.2 (tag v1.4.3.2rel)
1 ==================================
2 * include missing membuf.pyx file in release source tarball.
3
4 version 1.4.3.1 (tag v1.4.3.1)
15 ===================================
26 * fix bug in implementation of NETCDF4_CLASSIC support for parallel IO
37 in v1.4.3 release.
1616 include netCDF4/utils.py
1717 include include/netCDF4.pxi
1818 include include/mpi-compat.h
19 include include/membuf.pyx
77
88 ## News
99 For details on the latest updates, see the [Changelog](https://github.com/Unidata/netcdf4-python/blob/master/Changelog).
10
11 03/08/2019: Version [1.4.3.2](https://pypi.python.org/pypi/netCDF4/1.4.3.2) released.
12 Include missing membuf.pyx file in source tarball.
1013
1114 03/07/2019: Version [1.4.3.1](https://pypi.python.org/pypi/netCDF4/1.4.3.1) released.
1215 Fixes bug in implementation of NETCDF4_CLASSIC parallel IO support in 1.4.3.
11841184 # python3: zip is already python2's itertools.izip
11851185 pass
11861186
1187 __version__ = "1.4.3.1"
1187 __version__ = "1.4.3.2"
11881188
11891189 # Initialize numpy
11901190 import posixpath
569569
570570 setup(name="netCDF4",
571571 cmdclass=cmdclass,
572 version="1.4.3.1",
572 version="1.4.3.2",
573573 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.",
574574 author="Jeff Whitaker",
575575 author_email="jeffrey.s.whitaker@noaa.gov",