File: RELEASE_NOTES_v3.5.x.rst

package info (click to toggle)
pytables 3.10.2-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,228 kB
  • sloc: ansic: 82,212; python: 65,296; cpp: 753; sh: 394; makefile: 100
file content (50 lines) | stat: -rw-r--r-- 1,984 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
=======================================
 Release notes for PyTables 3.5 series
=======================================

:Author: PyTables Developers
:Contact: pytables-dev@googlegroups.com

.. py:currentmodule:: tables


Changes from 3.5.1 to 3.5.2
===========================

- Fixed compatibility with python 3.8: Fixed `Dictionary keys changed during
  iteration` RuntimeError while moving/renaming a node.
  Thanks to Christoph Gohlke for reporting and Miro HronĨok for help with
  building PyTables for python 3.8alpha (cython compatibility).
  See :issue:`733` and :PR:`737`.
- Fixed a bug in offset calculations producing floats instead of ints
  affecting python 3. See :PR:`736`. Thanks to Brad Montgomery.


Changes from 3.5.0 to 3.5.1
===========================

- Maintenance release to fix how PyPi repo is handling wheel versions.


Changes from 3.4.4 to 3.5.0
===========================

Improvements
------------
 - 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
   see :issue:`720`.
 - 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.  See :PR:`716`.  Thanks to Robert McLeod.