Release notes for PyTables 3.9 series¶
- Author:
PyTables Developers
- Contact:
Changes from 3.8.0 to 3.9.0¶
XXX version-specific blurb XXX
Changes from 3.7.0 to 3.8.0¶
Improvements¶
Support for Python 3.11 has been added (PR #962).
Support for Python 3.6 and Python 3.7 has been dropped (PR #966).
Added a new (registered) HDF5 filter for Blosc2 compressor (PR #969).
Added optimized paths for Blosc2 reading and writing in tables. This bypasses the HDF5 filter pipeline by building the Blosc2 CFrames and sending them to the HDF5 direct chunking machinery (PR #969).
Internal C-Blosc sources updated to 1.21.2.
Thanks to Oscar Guiñon, Francesc Alted for implementing Blosc2 the support and NumFOCUS for providing a grant for that.
Other changes¶
Starting form this release, C source files generated by Cython are no longer included in the source distribution package.
Pre-built HTML documentation is no longer included in the source package.
Changes from 3.6.1 to 3.7.0¶
Improvements¶
Compatibility with Python 3.10, numpy 1.21 and HDF5 1.12.
Support for Python 3.5 has been dropped (gh-840 and gh-850).
Windows: Significantly faster import tables PR #781. Thanks to Christoph Gohlke.
Internal C-Blosc sources updated to 1.21.1 (gh-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.
Stop using appveyor and deprecated ci-helpers (closes gh-827).
Switch to git submodule for the management of vendored c-blosc sources.
CI moved to GitHub Actions (GHA).
Drop Travis-CI.
Improved code formatting and notation consistency (gh-873, gh-868, gh-865 thanks to Miroslav Šedivý).
Improve the use of modern Python including
pathlib
, f-strings (gh-859, gh-855, gh-839 and gh-818 thanks to Miroslav Šedivý).Several improvements to wheels generation in CI (thanks to Andreas Motl @amotl and Matthias @xmatthias).
Simplified management of version information.
Drop dependency on the deprecated distutils.
Modernize the setup script and add support for PEP517 (gh-907).
Bugfixes¶
Other changes¶
Drop the deprecated hdf5Version and File.open_count.
the
get_tables_version()
andget_hdf5_version()
functions are now deprecated please use the corespondingtables.__version__
andtables.hdf5_version
instead.