Index index by Group index by Distribution index by Vendor index by creation date index by Name Mirrors Help Search

python39-tables-3.7.0-2.6 RPM for armv6hl

From OpenSuSE Ports Tumbleweed for armv6hl

Name: python39-tables Distribution: openSUSE Tumbleweed
Version: 3.7.0 Vendor: openSUSE
Release: 2.6 Build date: Tue Oct 11 09:56:16 2022
Group: Unspecified Build host: obs-arm-10
Size: 9380064 Source RPM: python-tables-3.7.0-2.6.src.rpm
Packager: http://bugs.opensuse.org
Url: https://github.com/PyTables/PyTables
Summary: Hierarchical datasets for Python
PyTables is a package for managing hierarchical datasets and
designed to efficently cope with extremely large amounts of
data. PyTables is built on top of the HDF5 library and the
NumPy package and features an object-oriented interface
that, combined with C-code generated from Pyrex sources,
makes of it a fast, yet extremely easy to use tool for
interactively save and retrieve large amounts of data.

Provides

Requires

License

BSD-3-Clause

Changelog

* Tue Mar 29 2022 Ben Greiner <code@bnavigator.de>
  - Avoid HDF5 library version mismatches -- see boo#1196682
* Sun Jan 16 2022 Ben Greiner <code@bnavigator.de>
  - Update to 3.7.0
    * Compatibility with Python 3.10, numpy 1.21 and HDF5 1.12.
    * Support for Python 3.5 has been dropped (#840 and #850).
    * Internal C-Blosc sources updated to 1.21.1 (#931). Note that,
      starting from C-Blosc 1.19 does not include the Snappy codec
      sources anymore, so Snappy will be not available if you compile
      from included sources; other packages (like conda or wheels),
      may (or may not) include it.
    * Switch to git submodule for the management of vendored c-blosc
      sources.
    * Improved code formatting and notation consistency (#873, #868,
      [#865] thanks to Miroslav Šedivý).
    * Improve the use of modern Python including :mod:pathlib,
      f-strings (#859, #855, #839 and #818 thanks to Miroslav
      Šedivý).
    * Simplified management of version information.
    * Drop dependency on the deprecated distutils.
    * Modernize the setup script and add support for PEP517 (#907).
    * Fix pkg-config (setup.py) for Python 3.9 on Debian. Thanks to
      Marco Sulla PR #792.
    * Fix ROFileNode fails to return the fileno() (#633).
    * Do not flush read only files (#915 thanks to @lrepiton).
    * Drop the deprecated hdf5Version and File.open_count.
    * the :func:get_tables_version and :func:get_hdf5_version
      functions are now deprecated please use the coresponding
      :data:tables.__version__ and :data:tables.hdf5_version instead.
  - Drop patches fixed upstream
    * PyTables-compat-numpy119.patch
    * PyTables-pr810-tostring.patch
    * PyTables-skip-test_vlarray.patch
    * tables-pr862-lowercasefdtype.patch
  - Replace Never-use-the-msse2-flag-explicitly.patch by use of
    environment variable
* Wed Feb 17 2021 Ben Greiner <code@bnavigator.de>
  - Skip python36 build: python36-numpy was dropped in Tumbleweed
    due to NEP 29
  - Add tables-pr862-lowercasefdtype.patch to support NumPy 1.20
    gh#PyTables/PyTables#862
* Thu Dec 24 2020 Benjamin Greiner <code@bnavigator.de>
  - remove mock requirement
  - add PyTables-compat-numpy119.patch for compatibility with numpy
    1.19
  - add PyTables-pr810-tostring.patch in order to avoid numerous
    deprecation warnings -- gh#PyTables/PyTables#810
  - add PyTables-skip-test_vlarray.patch in order to skip failing
    tests -- gh#PyTables/PyTables#845
* Tue May 19 2020 Petr Gajdos <pgajdos@suse.com>
  - %python3_only -> %python_alternative
* Sat Nov 09 2019 Arun Persaud <arun@gmx.de>
  - specfile:
    * make it python3 only
    * remove six
    * update required version for numpy and numexpr
  - update to version 3.6.1:
    * Maintenance release to fix packaging issues. No new features or
      bugfixes.
  - changes from version 3.6.0:
    * PyTables 3.6 no longer supports Python 2.7 see PR #747.
    * Improvements
      + Full python 3.8 support.
      + On Windows PyTables wheels on PyPI are linked to
      `pytables_hdf5.dll` instead of `hdf5.dll` to prevent collisions
      with other packages/wheels that also vendor `hdf5.dll`. This
      should prevent problems that arise when a different version of a
      dll is imported that the version to which the program was linked
      to. This problem is known as "DLL Hell". With the renaming of
      the HDF5 DLL to `pytables_hdf5.dll` these problems should be
      solved.
    * Bugfixes
      + Bugfix for HDF5 files/types with padding. For details see
      :issue:`734`.
      + More fixes for python 3.8 compatibility: Replace deprecated
      time.clock with time.perf_counter Thanks to Sergio Pascual
      (sergiopasra). see :issue:`744` and PR #745.
      + Improvements in tests as well as clean up from dropping Python
      2.7 support.  Thanks to Seth Troisi (sethtroisi).
* Mon Jul 22 2019 Todd R <toddrme2178@gmail.com>
  - Update to 3.5.2
    * Fixed compatibility with python 3.8: Fixed `Dictonary keys changed during
      iteration` RuntimeError while moving/renameing a node.
      Thanks to Christoph Gohlke for reporting and Miro Hroncok for help with
      building PyTables for python 3.8alpha (cython compatibility).
    * Fixed a bug in offset calculations producing floats instead of ints
      affecting python 3. See PR #736. Thanks to Brad Montgomery.
  - Update to 3.5.1
    * Maintenance release to fix how PyPi repo is handling wheel versions.
  - Update to 3.5.0
    * When copying data from native HDF5 files with padding in compound types,
      the padding is not removed now by default.  This allows for better
      compatibility with existing HDF5 applications that expect the padding
      to stay there.
      Also, when the `description` is a NumPy struct array with padding, this
      is honored now.  The previous behaviour (i.e. getting rid of paddings) can
      be replicated by passing the new `allow_padding` parameter when opening
      a file.  For some examples, see the new `examples/tables-with-padding.py`
      and `examples/attrs-with-padding.py`.  For details on the implementation
    * Added a new flag `--dont-allow-padding` in `ptrepack` utility so as to
      replicate the previous behaviour of removing padding during file copies.
      The default is to honor the original padding in copies.
    * Improve compatibility with numpy 1.16.
    * Improve detection of the LZO2 library at build time.
    * Suppress several warnings.
    * Add AVX2 support for Windows.
  - Rebase Never-use-the-msse2-flag-explicitly.patch
  - Remove upstream-included patches:
    * pytables_no_unsafe_write.patch
    * pytables_fix_exception_check.patch
* Wed Feb 13 2019 Todd R <toddrme2178@gmail.com>
  - Add patches for numpy 1.16 compatibility:
    * pytables_fix_exception_check.patch
      from: https://github.com/PyTables/PyTables/commit/46fa2f07c00613ed6b647b2cf44e388f547fe668
    * pytables_no_unsafe_write.patch
      from: https://github.com/PyTables/PyTables/commit/f6b64c942fb91e6c261fa455969a38482c22beeb
* Fri Aug 10 2018 tchvatal@suse.com
  - Drop python-unittest2 dependency it was needed only on py2.6
* Wed Jun 13 2018 toddrme2178@gmail.com
  - Update to 3.4.4
    + Improvements
    * Environment variable to control the use of embedded libraries.
    * Include citation in repository.
    + Bugs fixed
    * Fixed import error with numexpr 2.6.5.dev0
    * Fixed linter warnings.
    * Fixed for re.split() is version detection.
    * Fixed test failures with Python 2.7 and NumPy 1.14.3
  - Remove upstream-included initRecArray_tuples.patch

Files

/etc/alternatives/pt2to3
/etc/alternatives/ptdump
/etc/alternatives/ptrepack
/etc/alternatives/pttree
/usr/bin/pt2to3
/usr/bin/pt2to3-3.9
/usr/bin/ptdump
/usr/bin/ptdump-3.9
/usr/bin/ptrepack
/usr/bin/ptrepack-3.9
/usr/bin/pttree
/usr/bin/pttree-3.9
/usr/lib/python3.9/site-packages/tables
/usr/lib/python3.9/site-packages/tables-3.7.0-py3.9.egg-info
/usr/lib/python3.9/site-packages/tables-3.7.0-py3.9.egg-info/PKG-INFO
/usr/lib/python3.9/site-packages/tables-3.7.0-py3.9.egg-info/SOURCES.txt
/usr/lib/python3.9/site-packages/tables-3.7.0-py3.9.egg-info/dependency_links.txt
/usr/lib/python3.9/site-packages/tables-3.7.0-py3.9.egg-info/entry_points.txt
/usr/lib/python3.9/site-packages/tables-3.7.0-py3.9.egg-info/not-zip-safe
/usr/lib/python3.9/site-packages/tables-3.7.0-py3.9.egg-info/requires.txt
/usr/lib/python3.9/site-packages/tables-3.7.0-py3.9.egg-info/top_level.txt
/usr/lib/python3.9/site-packages/tables/__init__.py
/usr/lib/python3.9/site-packages/tables/__pycache__
/usr/lib/python3.9/site-packages/tables/__pycache__/__init__.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/__init__.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/array.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/array.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/atom.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/atom.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/attributeset.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/attributeset.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/carray.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/carray.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/conditions.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/conditions.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/description.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/description.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/earray.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/earray.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/exceptions.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/exceptions.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/expression.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/expression.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/file.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/file.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/filters.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/filters.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/flavor.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/flavor.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/group.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/group.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/idxutils.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/idxutils.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/index.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/index.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/indexes.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/indexes.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/leaf.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/leaf.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/link.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/link.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/node.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/node.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/parameters.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/parameters.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/path.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/path.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/registry.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/registry.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/req_versions.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/req_versions.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/table.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/table.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/undoredo.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/undoredo.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/unimplemented.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/unimplemented.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/utils.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/utils.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/vlarray.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/__pycache__/vlarray.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/_comp_bzip2.cpython-39-arm-linux-gnueabihf.so
/usr/lib/python3.9/site-packages/tables/_comp_bzip2.pyx
/usr/lib/python3.9/site-packages/tables/_comp_lzo.cpython-39-arm-linux-gnueabihf.so
/usr/lib/python3.9/site-packages/tables/_comp_lzo.pyx
/usr/lib/python3.9/site-packages/tables/array.py
/usr/lib/python3.9/site-packages/tables/atom.py
/usr/lib/python3.9/site-packages/tables/attributeset.py
/usr/lib/python3.9/site-packages/tables/carray.py
/usr/lib/python3.9/site-packages/tables/conditions.py
/usr/lib/python3.9/site-packages/tables/definitions.pxd
/usr/lib/python3.9/site-packages/tables/description.py
/usr/lib/python3.9/site-packages/tables/earray.py
/usr/lib/python3.9/site-packages/tables/exceptions.py
/usr/lib/python3.9/site-packages/tables/expression.py
/usr/lib/python3.9/site-packages/tables/file.py
/usr/lib/python3.9/site-packages/tables/filters.py
/usr/lib/python3.9/site-packages/tables/flavor.py
/usr/lib/python3.9/site-packages/tables/group.py
/usr/lib/python3.9/site-packages/tables/hdf5extension.cpython-39-arm-linux-gnueabihf.so
/usr/lib/python3.9/site-packages/tables/hdf5extension.pxd
/usr/lib/python3.9/site-packages/tables/hdf5extension.pyx
/usr/lib/python3.9/site-packages/tables/idxutils.py
/usr/lib/python3.9/site-packages/tables/index.py
/usr/lib/python3.9/site-packages/tables/indexes.py
/usr/lib/python3.9/site-packages/tables/indexesextension.cpython-39-arm-linux-gnueabihf.so
/usr/lib/python3.9/site-packages/tables/indexesextension.pyx
/usr/lib/python3.9/site-packages/tables/leaf.py
/usr/lib/python3.9/site-packages/tables/link.py
/usr/lib/python3.9/site-packages/tables/linkextension.cpython-39-arm-linux-gnueabihf.so
/usr/lib/python3.9/site-packages/tables/linkextension.pyx
/usr/lib/python3.9/site-packages/tables/lrucacheextension.cpython-39-arm-linux-gnueabihf.so
/usr/lib/python3.9/site-packages/tables/lrucacheextension.pxd
/usr/lib/python3.9/site-packages/tables/lrucacheextension.pyx
/usr/lib/python3.9/site-packages/tables/misc
/usr/lib/python3.9/site-packages/tables/misc/__init__.py
/usr/lib/python3.9/site-packages/tables/misc/__pycache__
/usr/lib/python3.9/site-packages/tables/misc/__pycache__/__init__.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/misc/__pycache__/__init__.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/misc/__pycache__/enum.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/misc/__pycache__/enum.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/misc/__pycache__/proxydict.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/misc/__pycache__/proxydict.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/misc/enum.py
/usr/lib/python3.9/site-packages/tables/misc/proxydict.py
/usr/lib/python3.9/site-packages/tables/node.py
/usr/lib/python3.9/site-packages/tables/nodes
/usr/lib/python3.9/site-packages/tables/nodes/__init__.py
/usr/lib/python3.9/site-packages/tables/nodes/__pycache__
/usr/lib/python3.9/site-packages/tables/nodes/__pycache__/__init__.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/nodes/__pycache__/__init__.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/nodes/__pycache__/filenode.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/nodes/__pycache__/filenode.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/nodes/filenode.py
/usr/lib/python3.9/site-packages/tables/nodes/tests
/usr/lib/python3.9/site-packages/tables/nodes/tests/__init__.py
/usr/lib/python3.9/site-packages/tables/nodes/tests/__pycache__
/usr/lib/python3.9/site-packages/tables/nodes/tests/__pycache__/__init__.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/nodes/tests/__pycache__/__init__.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/nodes/tests/__pycache__/test_filenode.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/nodes/tests/__pycache__/test_filenode.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/nodes/tests/test_filenode.dat
/usr/lib/python3.9/site-packages/tables/nodes/tests/test_filenode.py
/usr/lib/python3.9/site-packages/tables/nodes/tests/test_filenode.xbm
/usr/lib/python3.9/site-packages/tables/nodes/tests/test_filenode_v1.h5
/usr/lib/python3.9/site-packages/tables/parameters.py
/usr/lib/python3.9/site-packages/tables/path.py
/usr/lib/python3.9/site-packages/tables/registry.py
/usr/lib/python3.9/site-packages/tables/req_versions.py
/usr/lib/python3.9/site-packages/tables/scripts
/usr/lib/python3.9/site-packages/tables/scripts/__init__.py
/usr/lib/python3.9/site-packages/tables/scripts/__pycache__
/usr/lib/python3.9/site-packages/tables/scripts/__pycache__/__init__.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/scripts/__pycache__/__init__.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/scripts/__pycache__/pt2to3.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/scripts/__pycache__/pt2to3.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/scripts/__pycache__/ptdump.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/scripts/__pycache__/ptdump.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/scripts/__pycache__/ptrepack.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/scripts/__pycache__/ptrepack.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/scripts/__pycache__/pttree.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/scripts/__pycache__/pttree.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/scripts/pt2to3.py
/usr/lib/python3.9/site-packages/tables/scripts/ptdump.py
/usr/lib/python3.9/site-packages/tables/scripts/ptrepack.py
/usr/lib/python3.9/site-packages/tables/scripts/pttree.py
/usr/lib/python3.9/site-packages/tables/table.py
/usr/lib/python3.9/site-packages/tables/tableextension.cpython-39-arm-linux-gnueabihf.so
/usr/lib/python3.9/site-packages/tables/tableextension.pyx
/usr/lib/python3.9/site-packages/tables/tests
/usr/lib/python3.9/site-packages/tables/tests/Table2_1_lzo_nrv2e_shuffle.h5
/usr/lib/python3.9/site-packages/tables/tests/Tables_lzo1.h5
/usr/lib/python3.9/site-packages/tables/tests/Tables_lzo1_shuffle.h5
/usr/lib/python3.9/site-packages/tables/tests/Tables_lzo2.h5
/usr/lib/python3.9/site-packages/tables/tests/Tables_lzo2_shuffle.h5
/usr/lib/python3.9/site-packages/tables/tests/__init__.py
/usr/lib/python3.9/site-packages/tables/tests/__pycache__
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/__init__.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/__init__.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/check_leaks.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/check_leaks.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/common.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/common.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/create_backcompat_indexes.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/create_backcompat_indexes.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_all.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_all.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_array.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_array.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_attributes.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_attributes.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_aux.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_aux.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_backcompat.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_backcompat.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_basics.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_basics.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_carray.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_carray.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_create.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_create.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_do_undo.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_do_undo.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_earray.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_earray.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_enum.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_enum.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_expression.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_expression.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_garbage.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_garbage.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_hdf5compat.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_hdf5compat.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_index_backcompat.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_index_backcompat.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_indexes.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_indexes.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_indexvalues.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_indexvalues.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_links.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_links.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_lists.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_lists.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_nestedtypes.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_nestedtypes.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_numpy.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_numpy.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_queries.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_queries.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_suite.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_suite.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_tables.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_tables.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_tablesMD.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_tablesMD.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_timestamps.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_timestamps.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_timetype.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_timetype.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_tree.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_tree.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_types.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_types.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_utils.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_utils.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_vlarray.cpython-39.opt-1.pyc
/usr/lib/python3.9/site-packages/tables/tests/__pycache__/test_vlarray.cpython-39.pyc
/usr/lib/python3.9/site-packages/tables/tests/array_mdatom.h5
/usr/lib/python3.9/site-packages/tables/tests/attr-u16.h5
/usr/lib/python3.9/site-packages/tables/tests/blosc_bigendian.h5
/usr/lib/python3.9/site-packages/tables/tests/bug-idx.h5
/usr/lib/python3.9/site-packages/tables/tests/check_leaks.py
/usr/lib/python3.9/site-packages/tables/tests/common.py
/usr/lib/python3.9/site-packages/tables/tests/create_backcompat_indexes.py
/usr/lib/python3.9/site-packages/tables/tests/elink.h5
/usr/lib/python3.9/site-packages/tables/tests/elink2.h5
/usr/lib/python3.9/site-packages/tables/tests/ex-noattr.h5
/usr/lib/python3.9/site-packages/tables/tests/flavored_vlarrays-format1.6.h5
/usr/lib/python3.9/site-packages/tables/tests/float.h5
/usr/lib/python3.9/site-packages/tables/tests/idx-std-1.x.h5
/usr/lib/python3.9/site-packages/tables/tests/indexes_2_0.h5
/usr/lib/python3.9/site-packages/tables/tests/indexes_2_1.h5
/usr/lib/python3.9/site-packages/tables/tests/issue_368.h5
/usr/lib/python3.9/site-packages/tables/tests/issue_560.h5
/usr/lib/python3.9/site-packages/tables/tests/itemsize.h5
/usr/lib/python3.9/site-packages/tables/tests/matlab_file.mat
/usr/lib/python3.9/site-packages/tables/tests/nested-type-with-gaps.h5
/usr/lib/python3.9/site-packages/tables/tests/non-chunked-table.h5
/usr/lib/python3.9/site-packages/tables/tests/oldflavor_numeric.h5
/usr/lib/python3.9/site-packages/tables/tests/out_of_order_types.h5
/usr/lib/python3.9/site-packages/tables/tests/python2.h5
/usr/lib/python3.9/site-packages/tables/tests/python3.h5
/usr/lib/python3.9/site-packages/tables/tests/scalar.h5
/usr/lib/python3.9/site-packages/tables/tests/slink.h5
/usr/lib/python3.9/site-packages/tables/tests/smpl_SDSextendible.h5
/usr/lib/python3.9/site-packages/tables/tests/smpl_compound_chunked.h5
/usr/lib/python3.9/site-packages/tables/tests/smpl_enum.h5
/usr/lib/python3.9/site-packages/tables/tests/smpl_f64be.h5
/usr/lib/python3.9/site-packages/tables/tests/smpl_f64le.h5
/usr/lib/python3.9/site-packages/tables/tests/smpl_i32be.h5
/usr/lib/python3.9/site-packages/tables/tests/smpl_i32le.h5
/usr/lib/python3.9/site-packages/tables/tests/smpl_i64be.h5
/usr/lib/python3.9/site-packages/tables/tests/smpl_i64le.h5
/usr/lib/python3.9/site-packages/tables/tests/smpl_unsupptype.h5
/usr/lib/python3.9/site-packages/tables/tests/test_all.py
/usr/lib/python3.9/site-packages/tables/tests/test_array.py
/usr/lib/python3.9/site-packages/tables/tests/test_attributes.py
/usr/lib/python3.9/site-packages/tables/tests/test_aux.py
/usr/lib/python3.9/site-packages/tables/tests/test_backcompat.py
/usr/lib/python3.9/site-packages/tables/tests/test_basics.py
/usr/lib/python3.9/site-packages/tables/tests/test_carray.py
/usr/lib/python3.9/site-packages/tables/tests/test_create.py
/usr/lib/python3.9/site-packages/tables/tests/test_do_undo.py
/usr/lib/python3.9/site-packages/tables/tests/test_earray.py
/usr/lib/python3.9/site-packages/tables/tests/test_enum.py
/usr/lib/python3.9/site-packages/tables/tests/test_expression.py
/usr/lib/python3.9/site-packages/tables/tests/test_garbage.py
/usr/lib/python3.9/site-packages/tables/tests/test_hdf5compat.py
/usr/lib/python3.9/site-packages/tables/tests/test_index_backcompat.py
/usr/lib/python3.9/site-packages/tables/tests/test_indexes.py
/usr/lib/python3.9/site-packages/tables/tests/test_indexvalues.py
/usr/lib/python3.9/site-packages/tables/tests/test_links.py
/usr/lib/python3.9/site-packages/tables/tests/test_lists.py
/usr/lib/python3.9/site-packages/tables/tests/test_nestedtypes.py
/usr/lib/python3.9/site-packages/tables/tests/test_numpy.py
/usr/lib/python3.9/site-packages/tables/tests/test_queries.py
/usr/lib/python3.9/site-packages/tables/tests/test_ref_array1.mat
/usr/lib/python3.9/site-packages/tables/tests/test_ref_array2.mat
/usr/lib/python3.9/site-packages/tables/tests/test_suite.py
/usr/lib/python3.9/site-packages/tables/tests/test_szip.h5
/usr/lib/python3.9/site-packages/tables/tests/test_tables.py
/usr/lib/python3.9/site-packages/tables/tests/test_tablesMD.py
/usr/lib/python3.9/site-packages/tables/tests/test_timestamps.py
/usr/lib/python3.9/site-packages/tables/tests/test_timetype.py
/usr/lib/python3.9/site-packages/tables/tests/test_tree.py
/usr/lib/python3.9/site-packages/tables/tests/test_types.py
/usr/lib/python3.9/site-packages/tables/tests/test_utils.py
/usr/lib/python3.9/site-packages/tables/tests/test_vlarray.py
/usr/lib/python3.9/site-packages/tables/tests/time-table-vlarray-1_x.h5
/usr/lib/python3.9/site-packages/tables/tests/times-nested-be.h5
/usr/lib/python3.9/site-packages/tables/tests/vlstr_attr.h5
/usr/lib/python3.9/site-packages/tables/tests/vlunicode_endian.h5
/usr/lib/python3.9/site-packages/tables/tests/zerodim-attrs-1.3.h5
/usr/lib/python3.9/site-packages/tables/tests/zerodim-attrs-1.4.h5
/usr/lib/python3.9/site-packages/tables/undoredo.py
/usr/lib/python3.9/site-packages/tables/unimplemented.py
/usr/lib/python3.9/site-packages/tables/utils.py
/usr/lib/python3.9/site-packages/tables/utilsextension.cpython-39-arm-linux-gnueabihf.so
/usr/lib/python3.9/site-packages/tables/utilsextension.pxd
/usr/lib/python3.9/site-packages/tables/utilsextension.pyx
/usr/lib/python3.9/site-packages/tables/vlarray.py
/usr/share/doc/packages/python39-tables
/usr/share/doc/packages/python39-tables/ANNOUNCE.txt
/usr/share/doc/packages/python39-tables/README.rst
/usr/share/doc/packages/python39-tables/THANKS
/usr/share/licenses/python39-tables
/usr/share/licenses/python39-tables/BLOSC.txt
/usr/share/licenses/python39-tables/CLOUD-SPTHEME.txt
/usr/share/licenses/python39-tables/FASTLZ.txt
/usr/share/licenses/python39-tables/H5PY.txt
/usr/share/licenses/python39-tables/HDF5.txt
/usr/share/licenses/python39-tables/LICENSE.txt
/usr/share/licenses/python39-tables/LZ4.txt
/usr/share/licenses/python39-tables/SNAPPY.txt
/usr/share/licenses/python39-tables/STDINT.txt
/usr/share/licenses/python39-tables/WIN32PTHREADS.txt
/usr/share/licenses/python39-tables/ZLIB.txt
/usr/share/licenses/python39-tables/ZSTD.TXT
/usr/share/licenses/python39-tables/_current_flavor


Generated by rpm2html 1.8.1

Fabrice Bellet, Sat Apr 27 00:31:59 2024