Accepting request 707466 from home:mcalabkova:branches:devel:languages:python:numeric

- Update to 1.5.1.2
  * fix for issue #919  (assigning 2d array to 3d variable with singleton
  first dimension with v[:] = a).
  * minimum numpy changed from 1.9.0 to 1.10.0.
  * fix issue #908 by adding workaround for incorrect value returned
  by nc_inq_var_fill for netcdf-c < 4.5.1.
  * fix bug writing slice to unlimited dimension that is not the first
  (leftmost). Issue #906.
  * make sure data gets converted to type of scale_factor when add_offset=0
  and scale_factor=1 (issue #913).
  * fix for reading empty (NIL) string attributes (issue #915).
  * add read-shared mode (mode='rs'). Significantly speeds up reads of NETCDF3
  files (pull request #902).
  * added support for parallel IO in the classic netcdf-3 formats through the
  pnetcdf library (pull request #897).

OBS-URL: https://build.opensuse.org/request/show/707466
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:numeric/python-netCDF4?expand=0&rev=5
This commit is contained in:
Tomáš Chvátal
2019-06-04 12:12:21 +00:00
committed by Git OBS Bridge
parent 79265f6a2a
commit d4553cdb70
4 changed files with 29 additions and 10 deletions

View File

@@ -1,3 +1,22 @@
-------------------------------------------------------------------
Tue Jun 4 11:44:56 UTC 2019 - Marketa Calabkova <mcalabkova@suse.com>
- Update to 1.5.1.2
* fix for issue #919 (assigning 2d array to 3d variable with singleton
first dimension with v[:] = a).
* minimum numpy changed from 1.9.0 to 1.10.0.
* fix issue #908 by adding workaround for incorrect value returned
by nc_inq_var_fill for netcdf-c < 4.5.1.
* fix bug writing slice to unlimited dimension that is not the first
(leftmost). Issue #906.
* make sure data gets converted to type of scale_factor when add_offset=0
and scale_factor=1 (issue #913).
* fix for reading empty (NIL) string attributes (issue #915).
* add read-shared mode (mode='rs'). Significantly speeds up reads of NETCDF3
files (pull request #902).
* added support for parallel IO in the classic netcdf-3 formats through the
pnetcdf library (pull request #897).
-------------------------------------------------------------------
Wed Mar 20 16:36:46 CET 2019 - Matej Cepl <mcepl@suse.com>