/usr/share/pyshared/h5py/version.py is in python-h5py 2.0.1-2+b1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | from . import h5 as _h5
version = "2.0.1"
_exp = version.partition('-')
version_tuple = tuple(int(x) for x in _exp[0].split('.')) + (_exp[2],)
hdf5_version_tuple = _h5.get_libversion()
hdf5_version = "%d.%d.%d" % hdf5_version_tuple
api_version_tuple = (1,8)
api_version = "1.8"
__doc__ = """\
This is h5py **%s**
* HDF5 version: **%s**
* API compatibility: **%s**
""" % (version, hdf5_version, api_version)
|