[h5py] 02/03: Merge tag 'upstream/2.5.0' into debian/experimental

Ghislain Vaillant ghisvail-guest at moszumanska.debian.org
Thu Apr 16 23:19:21 UTC 2015


This is an automated email from the git hooks/post-receive script.

ghisvail-guest pushed a commit to branch debian/experimental
in repository h5py.

commit 6a7f3867de92fa41ae1076bd85e23da4298793ad
Merge: 9fde65a 2b6b9ba
Author: Ghislain Antony Vaillant <ghisvail at gmail.com>
Date:   Fri Apr 17 00:15:09 2015 +0100

    Merge tag 'upstream/2.5.0' into debian/experimental
    
    Upstream version 2.5.0

 .gitignore                                |  22 ++
 .travis.yml                               |  23 ++
 ANN.rst                                   |  60 ++--
 MANIFEST.in                               |   3 +
 PKG-INFO                                  |  38 ---
 README.rst                                |   1 +
 api_gen.py                                |  17 +-
 docs/Makefile                             | 177 ++++++++++++
 docs/build.rst                            | 160 +++++++++++
 docs/conf.py                              | 260 +++++++++++++++++
 docs/config.rst                           |  65 +++++
 docs/contributing.rst                     | 338 +++++++++++++++++++++++
 docs/faq.rst                              | 209 ++++++++++++++
 docs/high/attr.rst                        | 122 ++++++++
 docs/high/dataset.rst                     | 445 ++++++++++++++++++++++++++++++
 docs/high/dims.rst                        |  92 ++++++
 docs/high/file.rst                        | 183 ++++++++++++
 docs/high/group.rst                       | 436 +++++++++++++++++++++++++++++
 docs/high/index.rst                       |  16 ++
 docs/index.rst                            |  93 +++++++
 docs/licenses.rst                         | 232 ++++++++++++++++
 docs/low.rst                              |   4 +
 docs/mpi.rst                              | 149 ++++++++++
 docs/quick.rst                            | 146 ++++++++++
 docs/refs.rst                             | 129 +++++++++
 docs/special.rst                          | 128 +++++++++
 docs/strings.rst                          | 162 +++++++++++
 docs/swmr.rst                             | 168 +++++++++++
 docs/whatsnew/2.0.rst                     | 177 ++++++++++++
 docs/whatsnew/2.1.rst                     |  61 ++++
 docs/whatsnew/2.2.rst                     | 101 +++++++
 docs/whatsnew/2.3.rst                     |  85 ++++++
 docs/whatsnew/2.4.rst                     |  47 ++++
 docs/whatsnew/index.rst                   |  15 +
 docs_api/Makefile                         | 177 ++++++++++++
 docs_api/automod.py                       | 258 +++++++++++++++++
 docs_api/conf.py                          | 260 +++++++++++++++++
 docs_api/h5.rst                           |  44 +++
 docs_api/h5a.rst                          |  30 ++
 docs_api/h5d.rst                          |  47 ++++
 docs_api/h5f.rst                          |  87 ++++++
 docs_api/h5fd.rst                         |  61 ++++
 docs_api/h5g.rst                          |  63 +++++
 docs_api/h5i.rst                          |  26 ++
 docs_api/h5l.rst                          |  18 ++
 docs_api/h5o.rst                          |  57 ++++
 docs_api/h5p.rst                          |  95 +++++++
 docs_api/h5r.rst                          |  36 +++
 docs_api/h5s.rst                          |  62 +++++
 docs_api/h5t.rst                          | 234 ++++++++++++++++
 docs_api/h5z.rst                          |  65 +++++
 docs_api/index.rst                        |  41 +++
 docs_api/objects.rst                      |   6 +
 examples/swmr_inotify_example.py          |  85 ++++++
 examples/swmr_multiprocess.py             | 116 ++++++++
 h5py.egg-info/PKG-INFO                    |  38 ---
 h5py.egg-info/SOURCES.txt                 | 121 --------
 h5py.egg-info/dependency_links.txt        |   1 -
 h5py.egg-info/requires.txt                |   2 -
 h5py.egg-info/top_level.txt               |   1 -
 h5py/__init__.py                          |  34 ++-
 h5py/_conv.pyx                            |  70 ++---
 h5py/_errors.pyx                          |   6 +-
 h5py/_hdf5.pxd                            | 346 -----------------------
 h5py/_hl/__init__.py                      |   3 +
 h5py/_hl/attrs.py                         | 137 ++++++---
 h5py/_hl/base.py                          | 107 ++++---
 h5py/_hl/dataset.py                       |  90 +++---
 h5py/_hl/datatype.py                      |   2 +
 h5py/_hl/dims.py                          |   6 +-
 h5py/_hl/files.py                         |  68 +++--
 h5py/_hl/filters.py                       |  10 +-
 h5py/_hl/group.py                         |  22 +-
 h5py/_hl/selections.py                    |  28 +-
 h5py/_hl/selections2.py                   |   4 +-
 h5py/_proxy.pyx                           |   4 +-
 h5py/api_functions.txt                    |  19 +-
 h5py/api_types_hdf5.pxd                   |   2 +
 h5py/h5.pyx                               |   5 +
 h5py/h5a.pyx                              |  23 +-
 h5py/h5d.pyx                              |  40 +++
 h5py/h5f.pyx                              |  37 +++
 h5py/h5l.pyx                              |   4 +-
 h5py/h5o.pyx                              |   4 +-
 h5py/h5p.pyx                              |   4 +-
 h5py/h5s.pyx                              |   2 +-
 h5py/highlevel.py                         |  16 +-
 h5py/ipy_completer.py                     |   2 +
 h5py/tests/__init__.py                    |   2 +-
 h5py/tests/common.py                      |  15 +-
 h5py/tests/hl/__init__.py                 |  11 +-
 h5py/tests/hl/test_attribute_create.py    |  47 ++++
 h5py/tests/hl/test_dataset_getitem.py     |   3 +-
 h5py/tests/hl/test_dataset_swmr.py        | 159 +++++++++++
 h5py/tests/hl/test_dims_dimensionproxy.py |   4 +-
 h5py/tests/hl/test_file.py                |   4 +-
 h5py/tests/old/__init__.py                |   5 +-
 h5py/tests/old/common.py                  |  10 +-
 h5py/tests/old/test_attrs.py              |  10 +-
 h5py/tests/old/test_attrs_data.py         |  16 +-
 h5py/tests/old/test_base.py               |  14 +-
 h5py/tests/old/test_dataset.py            | 103 ++++++-
 h5py/tests/old/test_datatype.py           |   8 +-
 h5py/tests/old/test_dimension_scales.py   |   2 +
 h5py/tests/old/test_file.py               |  22 +-
 h5py/tests/old/test_group.py              | 126 +++++++--
 h5py/tests/old/test_h5.py                 |   2 +
 h5py/tests/old/test_h5f.py                |   2 +
 h5py/tests/old/test_h5p.py                |   2 +
 h5py/tests/old/test_h5t.py                |   2 +
 h5py/tests/old/test_objects.py            |   2 +
 h5py/tests/old/test_selections.py         |   4 +-
 h5py/tests/old/test_slicing.py            |  16 +-
 h5py/utils.pyx                            |  29 --
 h5py/version.py                           |   4 +-
 lzf/README.txt                            |  20 +-
 lzf/lzf_filter.c                          |  52 ++--
 other/garbage.py                          |  29 ++
 other/iterate_deadlock.py                 |  36 +++
 other/vlen_leak.py                        |  90 ++++++
 pavement.py                               |  35 +++
 setup.cfg                                 |   5 -
 setup.py                                  |  15 +-
 setup_build.py                            |  44 +++
 setup_configure.py                        |   7 +
 tox.ini                                   |  12 +
 126 files changed, 7471 insertions(+), 988 deletions(-)

-- 
Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-science/packages/h5py.git



More information about the debian-science-commits mailing list