pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/devel/py-h5py py-h5py: updated to 3.2.1



details:   https://anonhg.NetBSD.org/pkgsrc/rev/34ea40b747b3
branches:  trunk
changeset: 454250:34ea40b747b3
user:      adam <adam%pkgsrc.org@localhost>
date:      Mon Jun 07 11:57:50 2021 +0000

description:
py-h5py: updated to 3.2.1

What's new in h5py 3.2
======================

New features
------------

* Added support to use the HDF5 ROS3 driver to access HDF5 files on S3
  (:pr:`1755`). This is not enabled in the pre-built packages on PyPI. To use
  it, ensure HDF5 is built with read-only S3 support enabled, and then
  :ref:`build h5py from source <source_install>` using that HDF5 library.

Breaking changes & deprecations
-------------------------------

* Python 3.7 is now the minimum supported version. It may still be possible to
  use this release with Python 3.6, but it isn't tested and wheels are not
  provided for Python 3.6.
* Setting the config option ``default_file_mode`` to values other than ``'r'``
  is deprecated. Pass the desired mode when opening a :class:`~.File` instead.

Exposing HDF5 functions
-----------------------

* ``H5Pset_fapl_ros3`` & ``H5Pget_fapl_ros3`` (where HDF5 is built with
  read-only S3 support).

Bug fixes
---------

* :exc:`OSError` exceptions raised by h5py should now have a useful ``.errno``
  attribute, where HDF5 provides this information. Subclasses such as
  :exc:`FileNotFoundError` should also be raised where appropriate (:pr:`1815`).
* Fix reading data with a datatype of variable-length arrays of fixed length
  strings (:issue:`1817`).
* Fix :meth:`.Dataset.read_direct` and :meth:`.Dataset.write_direct` when the
  source and destination have different shapes (:pr:`1796`).
* Fix selecting data using integer indices in :meth:`.Dataset.read_direct`
  and :meth:`.Dataset.write_direct` (:pr:`1818`).
* Fix exception handling in :meth:`.Group.visititems` (:issue:`1740`).
* Issue a warning when ``File(..., swmr=True)`` is specified with any mode other
  than ``'r'``, as the SWMR option is ignored in these cases (:pr:`1812`).
* Fix NumPy 1.20 deprecation warnings concerning the use of None as shape, and
  the deprecated aliases np.float, np.int and np.bool (:pr:`1780`).

3.2.1 bug fix release
---------------------

* Fix :attr:`.File.driver` when the read-only S3 driver is available (:pr:`1844`).


What's new in h5py 3.1
======================

Bug fixes
---------

* Fix reading numeric data which is not in the native endianness,
  e.g. big-endian data on a little-endian system (:issue:`1729`).
* Fix using bytes as names for :meth:`.Group.create_dataset` and
  :meth:`.Group.create_virtual_dataset` (:issue:`1732`).
* Fix writing data as a list to a dataset with a sub-array data type
  (:issue:`1735`).

Building h5py
-------------

* Allow building against system lzf library by setting ``H5PY_SYSTEM_LZF=1``.
  See :ref:`custom_install`.

Development
-----------

* If pytest is missing `pytest-mpi <https://pytest-mpi.readthedocs.io/en/latest/>`_
  it will now fail with a clear error.
* Fix a test which was failing on big-endian systems.


What's new in h5py 3.0
======================

New features
------------

* The interface for storing & reading strings has changed - see :doc:`/strings`.
  The new rules are hopefully more consistent, but may well require some changes
  in coding using h5py.
* Reading & writing data now releases the GIL, so another Python thread can
  continue while HDF5 accesses data. Where HDF5 can call back into Python, such
  as for data conversion, h5py re-acquires the GIL. However, HDF5 has its own
  global lock, so this won't speed up parallel data access using multithreading.
* Numpy datetime and timedelta arrays can now be stored and read as HDF5
  opaque data (:issue:`1339`), though other tools will not understand them.
  See :ref:`opaque_dtypes` for more information.
* New :meth:`.Dataset.iter_chunks` method, to iterate over chunks within the
  given selection.
* Compatibility with HDF5 1.12.
* Methods which accept a shape tuple, e.g. to create a dataset, now also allow
  an integer for a 1D shape (:pr:`1340`).
* Casting data to a specified type on reading (:meth:`.Dataset.astype`) can now
  be done without a with statement, like this::

      data = dset.astype(np.int32)[:]

* A new :meth:`.Dataset.fields` method lets you read only selected fields from
  a dataset with a compound datatype.
* Reading data has less overhead, as selection has been implemented in Cython.
  Making many small reads from the same dataset can be as much as 10 times
  faster, but there are many factors that can affect performance.
* A new NumPy-style :attr:`.Dataset.nbytes` attribute to get the size of the
  dataset's data in bytes.  This differs from the :attr:`~.Dataset.size`
  attribute, which gives the number of elements.
* The ``external`` argument of :meth:`.Group.create_dataset`, which
  specifies any external storage for the dataset, accepts more types
  (:issue:`1260`), as follows:

  * The top-level container may be any iterable, not only a list.
  * The names of external files may be not only ``str`` but also ``bytes`` or
    ``os.PathLike`` objects.
  * The offsets and sizes may be NumPy integers as well as Python integers.

  See also the deprecation related to the ``external`` argument.
* Support for setting file space strategy at file creation. Includes option to
  persist empty space tracking between sessions. See :class:`.File` for details.
* More efficient writing when assiging a scalar to a chunked dataset, when the
  number of elements to write is no more than the size of one chunk.
* Introduced support for the split :ref:`file driver <file_driver>`
  (:pr:`1468`).
* Allow making virtual datasets which can grow as the source data is resized
  - see :doc:`/vds`.
* New `allow_unknown_filter` option to :meth:`.Group.create_dataset`. This should
  only be used if you will compress the data before writing it with the
  low-level :meth:`~h5py.h5d.DatasetID.write_direct_chunk` method.
* The low-level chunk query API provides information about dataset chunks in an
  HDF5 file: :meth:`~h5py.h5d.DatasetID.get_num_chunks`,
  :meth:`~h5py.h5d.DatasetID.get_chunk_info` and
  :meth:`~h5py.h5d.DatasetID.get_chunk_info_by_coord`.
* The low-level :meth:`h5py.h5f.FileID.get_vfd_handle` method now works for any
  file driver that supports it, not only the sec2 driver.

Breaking changes & deprecations
-------------------------------

* h5py now requires Python 3.6 or above; it is no longer compatible with Python
  2.7.
* The default mode for opening files is now 'r' (read-only).
  See :ref:`file_open` for other possible modes if you need to write to a file.
* In previous versions, creating a dataset from a list of bytes objects would
  choose a fixed length string datatype to fit the biggest item. It will now
  use a variable length string datatype. To store fixed length strings, use a
  suitable dtype from :func:`h5py.string_dtype`.
* Variable-length UTF-8 strings in datasets are now read as ``bytes`` objects
  instead of ``str`` by default, for consistency with other kinds of strings.
  See :doc:`/strings` for more details.
* When making a virtual dataset, a dtype must be specified in
  :class:`.VirtualLayout`. There is no longer a default dtype, as this was
  surprising in some cases.
* The ``external`` argument of :meth:`Group.create_dataset` no longer accepts
  the following forms (:issue:`1260`):

  * a list containing *name*, [*offset*, [*size*]];
  * a list containing *name1*, *name2*, …; and
  * a list containing tuples such as ``(name,)`` and ``(name, offset)`` that
    lack the offset or size.

  Furthermore, each *name*–*offset*–*size* triplet now must be a tuple rather
  than an arbitrary iterable.  See also the new feature related to the
  ``external`` argument.
* The MPI mode no longer supports mpi4py 1.x.
* The deprecated ``h5py.h5t.available_ftypes`` dictionary was removed.
* The deprecated ``Dataset.value`` property was removed.
  Use ``ds[()]`` to read all data from any dataset.
* The deprecated functions ``new_vlen``, ``new_enum``, ``get_vlen`` and
  ``get_enum`` have been removed. See :doc:`/special` for the newer APIs.
* Removed deprecated File.fid attribute. Use :attr:`.File.id` instead.
* Remove the deprecated ``h5py.highlevel`` module.
  The high-level API is available directly in the ``h5py`` module.
* The third argument of ``h5py._hl.selections.select()`` is now an optional
  high-level :class:`.Dataset` object, rather than a ``DatasetID``.
  This is not really a public API - it has to be imported through the private
  ``_hl`` module - but probably some people are using it anyway.

Exposing HDF5 functions
-----------------------

* H5Dget_num_chunks
* H5Dget_chunk_info
* H5Dget_chunk_info_by_coord
* H5Oget_info1
* H5Oget_info_by_name1
* H5Oget_info_by_idx1
* H5Ovisit1
* H5Ovisit_by_name1
* H5Pset_attr_phase_change
* H5Pset_fapl_split
* H5Pget_file_space_strategy
* H5Pset_file_space_strategy
* H5Sencode1
* H5Tget_create_plist

Bug fixes
---------

* Fix segmentation fault when accessing vlen of strings (:issue:`1336`).
* Fix the storage of non-contiguous arrays, such as numpy slices, as HDF5 vlen
  data (:issue:`1649`).
* Fix pathologically slow reading/writing in certain conditions with integer
  indexing (:issue:`492`).
* Fix bug when :meth:`.Group.copy` source is a high-level object and destination
  is a Group (:issue:`1005`).
* Fix reading data for region references pointing to an empty selection.
* Unregister converter functions at exit, preventing segfaults on exit in some
  situations with threads (:pr:`1440`).
* As HDF5 1.10.6 and later support UTF-8 paths on Windows, h5py built against
  HDF5 1.10.6 will use UTF-8 for file names, allowing all filenames.
* Fixed :meth:`h5py.h5d.DatasetID.get_storage_size` to report storage size of
  zero bytes without raising an exception (:issue:`1475`).
* Attribute Managers (``obj.attrs``) can now work on HDF5 stored
  datatypes (:issue:`1476`).
* Remove broken inherited ``ds.dims.values()`` and ``ds.dims.items()`` methods.
  The dimensions interface behaves as a sequence, not a mapping (:issue:`744`).
* Fix creating attribute with :class:`.Empty` by converting its dtype to a numpy
  dtype object.
* Fix getting :attr:`~.Dataset.maxshape` on empty/null datasets.
* The :attr:`.File.swmr_mode` property is always available (:issue:`1580`).
* The :attr:`.File.mode` property handles SWMR access modes in addition to plain
  RDONLY/RDWR modes
* Importing an MPI build of h5py no longer initialises MPI immediately,
  which will hopefully avoid various strange behaviours.
* Avoid launching a subprocess by using ``platform.machine()`` at import time.
  This could trigger a warning in MPI.
* Removed an equality comparison with an empty array, which will cause problems
  with future versions of numpy.
* Better error message if you try to use the mpio driver and h5py was not built
  with MPI support.
* Improved error messages when requesting chunked storage for an empty dataset.
* Data conversion functions should fail more gracefully if no memory is
  available.
* Fix some errors for internal functions that were raising "TypeError:
  expected bytes, str found" instead of the correct error.
* Use relative path for virtual data sources if the source dataset is in the
  same file as the virtual dataset.
* Generic exception types used in tests' assertRaise (exception types changed in
  new HDF5 version)
* Use ``dtype=object`` in tests with ragged arrays

Building h5py
-------------

* The ``setup.py configure`` command was removed. Configuration for the build
  can be specified with environment variables instead. See :ref:`custom_install`
  for details.
* It is now possible to specify separate include and library directories for
  HDF5 via environment variables. See :ref:`custom_install` for more details.
* The pkg-config name to use when looking up the HDF5 library can now be
  configured, this can assist with selecting the correct HDF5 library when using
  MPI. See :ref:`custom_install` for more details.
* Using bare ``char*`` instead of ``array.array`` in h5d.read_direct_chunk since
  ``array.array`` is a private CPython C-API interface
* Define ``NPY_NO_DEPRECATED_API`` to silence a warning.
* Make the lzf filter build with HDF5 1.10 (:issue:`1219`).
* If HDF5 is not loaded, an additional message is displayed to check HDF5
  installation
* Rely much more on the C-interface provided by Cython to call Python and NumPy.
* Removed an old workaround which tried to run Cython in a subprocess if
  cythonize() didn't work. This shouldn't be necessary for any recent version
  of setuptools.
* Migrate all Cython code base to Cython3 syntax

    * The only noticeable change is in exception raising from cython which use bytes
    * Massively use local imports everywhere as expected from Python3
    * Explicitly mark several Cython functions as non-binding

Development
-----------

* Unregistering converter functions on exit (:pr:`1440`) should allow profiling
  and code coverage tools to work on Cython code.

diffstat:

 devel/py-h5py/Makefile |    9 +-
 devel/py-h5py/PLIST    |  211 +++++++++++++++++++++++++-----------------------
 devel/py-h5py/distinfo |   10 +-
 3 files changed, 122 insertions(+), 108 deletions(-)

diffs (286 lines):

diff -r 49c2b1dffc54 -r 34ea40b747b3 devel/py-h5py/Makefile
--- a/devel/py-h5py/Makefile    Mon Jun 07 11:56:11 2021 +0000
+++ b/devel/py-h5py/Makefile    Mon Jun 07 11:57:50 2021 +0000
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.9 2020/10/12 21:51:59 bacon Exp $
+# $NetBSD: Makefile,v 1.10 2021/06/07 11:57:50 adam Exp $
 
-DISTNAME=      h5py-2.9.0
+DISTNAME=      h5py-3.2.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION=   1
 CATEGORIES=    devel python
 MASTER_SITES=  ${MASTER_SITE_PYPI:=h/h5py/}
 
@@ -14,6 +13,10 @@
 BUILD_DEPENDS+=        ${PYPKGPREFIX}-pkgconfig-[0-9]*:../../devel/py-pkgconfig
 DEPENDS+=      ${PYPKGPREFIX}-six-[0-9]*:../../lang/py-six
 
+MAKE_ENV=      HDF5_DIR=${PREFIX}
+
+PYTHON_VERSIONS_INCOMPATIBLE=  27 36
+
 BUILDLINK_API_DEPENDS.hdf5+=   hdf5>=1.10
 .include "../../devel/hdf5/buildlink3.mk"
 .include "../../devel/py-cython/buildlink3.mk"
diff -r 49c2b1dffc54 -r 34ea40b747b3 devel/py-h5py/PLIST
--- a/devel/py-h5py/PLIST       Mon Jun 07 11:56:11 2021 +0000
+++ b/devel/py-h5py/PLIST       Mon Jun 07 11:57:50 2021 +0000
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.6 2019/06/16 14:11:49 adam Exp $
+@comment $NetBSD: PLIST,v 1.7 2021/06/07 11:57:50 adam Exp $
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
 ${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
 ${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
@@ -50,6 +50,7 @@
 ${PYSITELIB}/h5py/_hl/vds.pyo
 ${PYSITELIB}/h5py/_objects.so
 ${PYSITELIB}/h5py/_proxy.so
+${PYSITELIB}/h5py/_selector.so
 ${PYSITELIB}/h5py/defs.so
 ${PYSITELIB}/h5py/h5.so
 ${PYSITELIB}/h5py/h5a.so
@@ -63,6 +64,7 @@
 ${PYSITELIB}/h5py/h5l.so
 ${PYSITELIB}/h5py/h5o.so
 ${PYSITELIB}/h5py/h5p.so
+${PYSITELIB}/h5py/h5pl.so
 ${PYSITELIB}/h5py/h5py_warnings.py
 ${PYSITELIB}/h5py/h5py_warnings.pyc
 ${PYSITELIB}/h5py/h5py_warnings.pyo
@@ -70,9 +72,6 @@
 ${PYSITELIB}/h5py/h5s.so
 ${PYSITELIB}/h5py/h5t.so
 ${PYSITELIB}/h5py/h5z.so
-${PYSITELIB}/h5py/highlevel.py
-${PYSITELIB}/h5py/highlevel.pyc
-${PYSITELIB}/h5py/highlevel.pyo
 ${PYSITELIB}/h5py/ipy_completer.py
 ${PYSITELIB}/h5py/ipy_completer.pyc
 ${PYSITELIB}/h5py/ipy_completer.pyo
@@ -82,102 +81,114 @@
 ${PYSITELIB}/h5py/tests/common.py
 ${PYSITELIB}/h5py/tests/common.pyc
 ${PYSITELIB}/h5py/tests/common.pyo
-${PYSITELIB}/h5py/tests/hl/__init__.py
-${PYSITELIB}/h5py/tests/hl/__init__.pyc
-${PYSITELIB}/h5py/tests/hl/__init__.pyo
-${PYSITELIB}/h5py/tests/hl/test_attribute_create.py
-${PYSITELIB}/h5py/tests/hl/test_attribute_create.pyc
-${PYSITELIB}/h5py/tests/hl/test_attribute_create.pyo
-${PYSITELIB}/h5py/tests/hl/test_dataset_getitem.py
-${PYSITELIB}/h5py/tests/hl/test_dataset_getitem.pyc
-${PYSITELIB}/h5py/tests/hl/test_dataset_getitem.pyo
-${PYSITELIB}/h5py/tests/hl/test_dataset_swmr.py
-${PYSITELIB}/h5py/tests/hl/test_dataset_swmr.pyc
-${PYSITELIB}/h5py/tests/hl/test_dataset_swmr.pyo
-${PYSITELIB}/h5py/tests/hl/test_datatype.py
-${PYSITELIB}/h5py/tests/hl/test_datatype.pyc
-${PYSITELIB}/h5py/tests/hl/test_datatype.pyo
-${PYSITELIB}/h5py/tests/hl/test_deprecation.py
-${PYSITELIB}/h5py/tests/hl/test_deprecation.pyc
-${PYSITELIB}/h5py/tests/hl/test_deprecation.pyo
-${PYSITELIB}/h5py/tests/hl/test_dims_dimensionproxy.py
-${PYSITELIB}/h5py/tests/hl/test_dims_dimensionproxy.pyc
-${PYSITELIB}/h5py/tests/hl/test_dims_dimensionproxy.pyo
-${PYSITELIB}/h5py/tests/hl/test_file.py
-${PYSITELIB}/h5py/tests/hl/test_file.pyc
-${PYSITELIB}/h5py/tests/hl/test_file.pyo
-${PYSITELIB}/h5py/tests/hl/test_filters.py
-${PYSITELIB}/h5py/tests/hl/test_filters.pyc
-${PYSITELIB}/h5py/tests/hl/test_filters.pyo
-${PYSITELIB}/h5py/tests/hl/test_threads.py
-${PYSITELIB}/h5py/tests/hl/test_threads.pyc
-${PYSITELIB}/h5py/tests/hl/test_threads.pyo
-${PYSITELIB}/h5py/tests/hl/test_vds/__init__.py
-${PYSITELIB}/h5py/tests/hl/test_vds/__init__.pyc
-${PYSITELIB}/h5py/tests/hl/test_vds/__init__.pyo
-${PYSITELIB}/h5py/tests/hl/test_vds/test_highlevel_vds.py
-${PYSITELIB}/h5py/tests/hl/test_vds/test_highlevel_vds.pyc
-${PYSITELIB}/h5py/tests/hl/test_vds/test_highlevel_vds.pyo
-${PYSITELIB}/h5py/tests/hl/test_vds/test_lowlevel_vds.py
-${PYSITELIB}/h5py/tests/hl/test_vds/test_lowlevel_vds.pyc
-${PYSITELIB}/h5py/tests/hl/test_vds/test_lowlevel_vds.pyo
-${PYSITELIB}/h5py/tests/hl/test_vds/test_virtual_source.py
-${PYSITELIB}/h5py/tests/hl/test_vds/test_virtual_source.pyc
-${PYSITELIB}/h5py/tests/hl/test_vds/test_virtual_source.pyo
-${PYSITELIB}/h5py/tests/old/__init__.py
-${PYSITELIB}/h5py/tests/old/__init__.pyc
-${PYSITELIB}/h5py/tests/old/__init__.pyo
-${PYSITELIB}/h5py/tests/old/test_attrs.py
-${PYSITELIB}/h5py/tests/old/test_attrs.pyc
-${PYSITELIB}/h5py/tests/old/test_attrs.pyo
-${PYSITELIB}/h5py/tests/old/test_attrs_data.py
-${PYSITELIB}/h5py/tests/old/test_attrs_data.pyc
-${PYSITELIB}/h5py/tests/old/test_attrs_data.pyo
-${PYSITELIB}/h5py/tests/old/test_base.py
-${PYSITELIB}/h5py/tests/old/test_base.pyc
-${PYSITELIB}/h5py/tests/old/test_base.pyo
-${PYSITELIB}/h5py/tests/old/test_dataset.py
-${PYSITELIB}/h5py/tests/old/test_dataset.pyc
-${PYSITELIB}/h5py/tests/old/test_dataset.pyo
-${PYSITELIB}/h5py/tests/old/test_datatype.py
-${PYSITELIB}/h5py/tests/old/test_datatype.pyc
-${PYSITELIB}/h5py/tests/old/test_datatype.pyo
-${PYSITELIB}/h5py/tests/old/test_dimension_scales.py
-${PYSITELIB}/h5py/tests/old/test_dimension_scales.pyc
-${PYSITELIB}/h5py/tests/old/test_dimension_scales.pyo
-${PYSITELIB}/h5py/tests/old/test_file.py
-${PYSITELIB}/h5py/tests/old/test_file.pyc
-${PYSITELIB}/h5py/tests/old/test_file.pyo
-${PYSITELIB}/h5py/tests/old/test_file_image.py
-${PYSITELIB}/h5py/tests/old/test_file_image.pyc
-${PYSITELIB}/h5py/tests/old/test_file_image.pyo
-${PYSITELIB}/h5py/tests/old/test_group.py
-${PYSITELIB}/h5py/tests/old/test_group.pyc
-${PYSITELIB}/h5py/tests/old/test_group.pyo
-${PYSITELIB}/h5py/tests/old/test_h5.py
-${PYSITELIB}/h5py/tests/old/test_h5.pyc
-${PYSITELIB}/h5py/tests/old/test_h5.pyo
-${PYSITELIB}/h5py/tests/old/test_h5d_direct_chunk_write.py
-${PYSITELIB}/h5py/tests/old/test_h5d_direct_chunk_write.pyc
-${PYSITELIB}/h5py/tests/old/test_h5d_direct_chunk_write.pyo
-${PYSITELIB}/h5py/tests/old/test_h5f.py
-${PYSITELIB}/h5py/tests/old/test_h5f.pyc
-${PYSITELIB}/h5py/tests/old/test_h5f.pyo
-${PYSITELIB}/h5py/tests/old/test_h5p.py
-${PYSITELIB}/h5py/tests/old/test_h5p.pyc
-${PYSITELIB}/h5py/tests/old/test_h5p.pyo
-${PYSITELIB}/h5py/tests/old/test_h5t.py
-${PYSITELIB}/h5py/tests/old/test_h5t.pyc
-${PYSITELIB}/h5py/tests/old/test_h5t.pyo
-${PYSITELIB}/h5py/tests/old/test_objects.py
-${PYSITELIB}/h5py/tests/old/test_objects.pyc
-${PYSITELIB}/h5py/tests/old/test_objects.pyo
-${PYSITELIB}/h5py/tests/old/test_selections.py
-${PYSITELIB}/h5py/tests/old/test_selections.pyc
-${PYSITELIB}/h5py/tests/old/test_selections.pyo
-${PYSITELIB}/h5py/tests/old/test_slicing.py
-${PYSITELIB}/h5py/tests/old/test_slicing.pyc
-${PYSITELIB}/h5py/tests/old/test_slicing.pyo
+${PYSITELIB}/h5py/tests/conftest.py
+${PYSITELIB}/h5py/tests/conftest.pyc
+${PYSITELIB}/h5py/tests/conftest.pyo
+${PYSITELIB}/h5py/tests/data_files/__init__.py
+${PYSITELIB}/h5py/tests/data_files/__init__.pyc
+${PYSITELIB}/h5py/tests/data_files/__init__.pyo
+${PYSITELIB}/h5py/tests/data_files/vlen_string_dset.h5
+${PYSITELIB}/h5py/tests/data_files/vlen_string_dset_utc.h5
+${PYSITELIB}/h5py/tests/data_files/vlen_string_s390x.h5
+${PYSITELIB}/h5py/tests/test_attribute_create.py
+${PYSITELIB}/h5py/tests/test_attribute_create.pyc
+${PYSITELIB}/h5py/tests/test_attribute_create.pyo
+${PYSITELIB}/h5py/tests/test_attrs.py
+${PYSITELIB}/h5py/tests/test_attrs.pyc
+${PYSITELIB}/h5py/tests/test_attrs.pyo
+${PYSITELIB}/h5py/tests/test_attrs_data.py
+${PYSITELIB}/h5py/tests/test_attrs_data.pyc
+${PYSITELIB}/h5py/tests/test_attrs_data.pyo
+${PYSITELIB}/h5py/tests/test_base.py
+${PYSITELIB}/h5py/tests/test_base.pyc
+${PYSITELIB}/h5py/tests/test_base.pyo
+${PYSITELIB}/h5py/tests/test_big_endian_file.py
+${PYSITELIB}/h5py/tests/test_big_endian_file.pyc
+${PYSITELIB}/h5py/tests/test_big_endian_file.pyo
+${PYSITELIB}/h5py/tests/test_completions.py
+${PYSITELIB}/h5py/tests/test_completions.pyc
+${PYSITELIB}/h5py/tests/test_completions.pyo
+${PYSITELIB}/h5py/tests/test_dataset.py
+${PYSITELIB}/h5py/tests/test_dataset.pyc
+${PYSITELIB}/h5py/tests/test_dataset.pyo
+${PYSITELIB}/h5py/tests/test_dataset_getitem.py
+${PYSITELIB}/h5py/tests/test_dataset_getitem.pyc
+${PYSITELIB}/h5py/tests/test_dataset_getitem.pyo
+${PYSITELIB}/h5py/tests/test_dataset_swmr.py
+${PYSITELIB}/h5py/tests/test_dataset_swmr.pyc
+${PYSITELIB}/h5py/tests/test_dataset_swmr.pyo
+${PYSITELIB}/h5py/tests/test_datatype.py
+${PYSITELIB}/h5py/tests/test_datatype.pyc
+${PYSITELIB}/h5py/tests/test_datatype.pyo
+${PYSITELIB}/h5py/tests/test_dimension_scales.py
+${PYSITELIB}/h5py/tests/test_dimension_scales.pyc
+${PYSITELIB}/h5py/tests/test_dimension_scales.pyo
+${PYSITELIB}/h5py/tests/test_dims_dimensionproxy.py
+${PYSITELIB}/h5py/tests/test_dims_dimensionproxy.pyc
+${PYSITELIB}/h5py/tests/test_dims_dimensionproxy.pyo
+${PYSITELIB}/h5py/tests/test_dtype.py
+${PYSITELIB}/h5py/tests/test_dtype.pyc
+${PYSITELIB}/h5py/tests/test_dtype.pyo
+${PYSITELIB}/h5py/tests/test_errors.py
+${PYSITELIB}/h5py/tests/test_errors.pyc
+${PYSITELIB}/h5py/tests/test_errors.pyo
+${PYSITELIB}/h5py/tests/test_file.py
+${PYSITELIB}/h5py/tests/test_file.pyc
+${PYSITELIB}/h5py/tests/test_file.pyo
+${PYSITELIB}/h5py/tests/test_file2.py
+${PYSITELIB}/h5py/tests/test_file2.pyc
+${PYSITELIB}/h5py/tests/test_file2.pyo
+${PYSITELIB}/h5py/tests/test_file_image.py
+${PYSITELIB}/h5py/tests/test_file_image.pyc
+${PYSITELIB}/h5py/tests/test_file_image.pyo
+${PYSITELIB}/h5py/tests/test_filters.py
+${PYSITELIB}/h5py/tests/test_filters.pyc
+${PYSITELIB}/h5py/tests/test_filters.pyo
+${PYSITELIB}/h5py/tests/test_group.py
+${PYSITELIB}/h5py/tests/test_group.pyc
+${PYSITELIB}/h5py/tests/test_group.pyo
+${PYSITELIB}/h5py/tests/test_h5.py
+${PYSITELIB}/h5py/tests/test_h5.pyc
+${PYSITELIB}/h5py/tests/test_h5.pyo
+${PYSITELIB}/h5py/tests/test_h5d_direct_chunk.py
+${PYSITELIB}/h5py/tests/test_h5d_direct_chunk.pyc
+${PYSITELIB}/h5py/tests/test_h5d_direct_chunk.pyo
+${PYSITELIB}/h5py/tests/test_h5f.py
+${PYSITELIB}/h5py/tests/test_h5f.pyc
+${PYSITELIB}/h5py/tests/test_h5f.pyo
+${PYSITELIB}/h5py/tests/test_h5o.py
+${PYSITELIB}/h5py/tests/test_h5o.pyc
+${PYSITELIB}/h5py/tests/test_h5o.pyo
+${PYSITELIB}/h5py/tests/test_h5p.py
+${PYSITELIB}/h5py/tests/test_h5p.pyc
+${PYSITELIB}/h5py/tests/test_h5p.pyo
+${PYSITELIB}/h5py/tests/test_h5pl.py
+${PYSITELIB}/h5py/tests/test_h5pl.pyc
+${PYSITELIB}/h5py/tests/test_h5pl.pyo
+${PYSITELIB}/h5py/tests/test_h5t.py
+${PYSITELIB}/h5py/tests/test_h5t.pyc
+${PYSITELIB}/h5py/tests/test_h5t.pyo
+${PYSITELIB}/h5py/tests/test_objects.py
+${PYSITELIB}/h5py/tests/test_objects.pyc
+${PYSITELIB}/h5py/tests/test_objects.pyo
+${PYSITELIB}/h5py/tests/test_selections.py
+${PYSITELIB}/h5py/tests/test_selections.pyc
+${PYSITELIB}/h5py/tests/test_selections.pyo
+${PYSITELIB}/h5py/tests/test_slicing.py
+${PYSITELIB}/h5py/tests/test_slicing.pyc
+${PYSITELIB}/h5py/tests/test_slicing.pyo
+${PYSITELIB}/h5py/tests/test_vds/__init__.py
+${PYSITELIB}/h5py/tests/test_vds/__init__.pyc
+${PYSITELIB}/h5py/tests/test_vds/__init__.pyo
+${PYSITELIB}/h5py/tests/test_vds/test_highlevel_vds.py
+${PYSITELIB}/h5py/tests/test_vds/test_highlevel_vds.pyc
+${PYSITELIB}/h5py/tests/test_vds/test_highlevel_vds.pyo
+${PYSITELIB}/h5py/tests/test_vds/test_lowlevel_vds.py
+${PYSITELIB}/h5py/tests/test_vds/test_lowlevel_vds.pyc
+${PYSITELIB}/h5py/tests/test_vds/test_lowlevel_vds.pyo
+${PYSITELIB}/h5py/tests/test_vds/test_virtual_source.py
+${PYSITELIB}/h5py/tests/test_vds/test_virtual_source.pyc
+${PYSITELIB}/h5py/tests/test_vds/test_virtual_source.pyo
 ${PYSITELIB}/h5py/utils.so
 ${PYSITELIB}/h5py/version.py
 ${PYSITELIB}/h5py/version.pyc
diff -r 49c2b1dffc54 -r 34ea40b747b3 devel/py-h5py/distinfo
--- a/devel/py-h5py/distinfo    Mon Jun 07 11:56:11 2021 +0000
+++ b/devel/py-h5py/distinfo    Mon Jun 07 11:57:50 2021 +0000
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.6 2019/06/16 14:11:49 adam Exp $
+$NetBSD: distinfo,v 1.7 2021/06/07 11:57:50 adam Exp $
 
-SHA1 (h5py-2.9.0.tar.gz) = c976d3ed9959af4ed14db996ab3bb32e6ac499b3
-RMD160 (h5py-2.9.0.tar.gz) = e1aa8e709ab1f0eea1d85c99ff0753f31b69887a
-SHA512 (h5py-2.9.0.tar.gz) = 73b1f59e3e2b3eceebf7b97e49bd8f5199afafd7ef29917af05ff8415c2f2129a5c59db9658944370c9bcf8fc04ab26948ee27fc6fd948a22d19cace1ce8c853
-Size (h5py-2.9.0.tar.gz) = 287853 bytes
+SHA1 (h5py-3.2.1.tar.gz) = 9d7516decd129acada353a7fba3f77eb0476a810
+RMD160 (h5py-3.2.1.tar.gz) = 7f5f8c14ad7107b317974f427376685885e93860
+SHA512 (h5py-3.2.1.tar.gz) = c98f935f800f340239fdd5132534a3b79995dc952250521f0bd6972a60c34c21bb56d7ca3f1c655ad9d1e47fc5792f434f88a0919ae75bc9102e659bf4f1c284
+Size (h5py-3.2.1.tar.gz) = 368170 bytes


Home | Main Index | Thread Index | Old Index