Skip to content

Commit e5319d3

Browse files
author
Jeff Whitaker
authored
Merge pull request #894 from Unidata/issue893
forgot to include include/membuf.pyx in release source tarball
2 parents b22fb81 + 3fc3604 commit e5319d3

File tree

5 files changed

+10
-2
lines changed

5 files changed

+10
-2
lines changed

Changelog

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
version 1.4.3.2 (tag v1.4.3.2rel)
2+
==================================
3+
* include missing membuf.pyx file in release source tarball.
4+
15
version 1.4.3.1 (tag v1.4.3.1)
26
===================================
37
* fix bug in implementation of NETCDF4_CLASSIC support for parallel IO

MANIFEST.in

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,4 @@ include netCDF4/_netCDF4.pyx
1717
include netCDF4/utils.py
1818
include include/netCDF4.pxi
1919
include include/mpi-compat.h
20+
include include/membuf.pyx

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
## News
1010
For details on the latest updates, see the [Changelog](https://github.com/Unidata/netcdf4-python/blob/master/Changelog).
1111

12+
03/08/2019: Version [1.4.3.2](https://pypi.python.org/pypi/netCDF4/1.4.3.2) released.
13+
Include missing membuf.pyx file in source tarball.
14+
1215
03/07/2019: Version [1.4.3.1](https://pypi.python.org/pypi/netCDF4/1.4.3.1) released.
1316
Fixes bug in implementation of NETCDF4_CLASSIC parallel IO support in 1.4.3.
1417

netCDF4/_netCDF4.pyx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1185,7 +1185,7 @@ except ImportError:
11851185
# python3: zip is already python2's itertools.izip
11861186
pass
11871187

1188-
__version__ = "1.4.3.1"
1188+
__version__ = "1.4.3.2"
11891189

11901190
# Initialize numpy
11911191
import posixpath

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -570,7 +570,7 @@ def _populate_hdf5_info(dirstosearch, inc_dirs, libs, lib_dirs):
570570

571571
setup(name="netCDF4",
572572
cmdclass=cmdclass,
573-
version="1.4.3.1",
573+
version="1.4.3.2",
574574
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.",
575575
author="Jeff Whitaker",
576576
author_email="[email protected]",

0 commit comments

Comments
 (0)