File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11=============================
2- Announcing python-blosc 1.9.1
2+ Announcing python-blosc 1.9.2
33=============================
44
55What is new?
66============
77
8- We disabled the attempt to include support for SSE2 and AVX2 on
9- non-Intel platforms, allowing the build on such platforms (see #244).
10- Thanks to Lehman Garrison.
8+ This is a maintenance release for better support recent version of Python
9+ (3.8 and 3.9). Also, and due to the evolution of modern CPUs, the
10+ number of default threads has been raised to 8 (from 4).
11+ Finally, zero-copy decompression is now supported by allowing bytes-like
12+ input. Thanks to Lehman Garrison.
1113
1214For more info, you can have a look at the release notes in:
1315
Original file line number Diff line number Diff line change 1313Changes from 1.9.1 to 1.9.2
1414===========================
1515
16- #XXX version-specific blurb XXX#
16+ - Internal C-Blosc updated to 1.20.1. This fixes
17+ https://github.com/Blosc/python-blosc/issues/229, and also brings
18+ many new updates in internal codecs, providing interesting bumps
19+ in performance in some cases.
20+
21+ - Due to recent addition of more cores in new CPUs, the number of
22+ internal threads to be used by default has been increased from 4 to 8.
23+
24+ - Allow zero-copy decompression by allowing bytes-like input. See PR:
25+ https://github.com/Blosc/python-blosc/issues/229. Thanks to Lehman
26+ Garrison.
27+
28+ - Fix DeprecationWarning due to invalid escape sequence and use
29+ array.tobytes for Python 3.9.
1730
1831
1932Changes from 1.9.0 to 1.9.1
@@ -202,7 +215,7 @@ Changes from 1.3.0 to 1.3.1
202215 BLOSC_MAX_THREADS
203216 BLOSC_MAX_TYPESIZE
204217 However, these are considered deprecated and should be replaced by
205- libraries using python-blosc by the ones without the BLOSC _ prefix.
218+ libraries using python-blosc by the ones without the ` BLOSC_ ` prefix.
206219
207220
208221Changes from 1.2.8 to 1.3.0
Original file line number Diff line number Diff line change 1- 1.9.2-dev0
1+ 1.9.2
Original file line number Diff line number Diff line change 5858# The short X.Y version.
5959version = '1.9'
6060# The full version, including alpha/beta/rc tags.
61- release = '1.9.2.dev0 '
61+ release = '1.9.2'
6262
6363# The language for content autogenerated by Sphinx. Refer to documentation
6464# for a list of supported languages.
You can’t perform that action at this time.
0 commit comments