File tree 4 files changed +6
-15
lines changed
4 files changed +6
-15
lines changed Original file line number Diff line number Diff line change 1
- Announcing Python-Blosc2 2.1.0
1
+ Announcing Python-Blosc2 2.1.1
2
2
==============================
3
3
4
4
We are happy to inform that we are introducing `NDArray `, a object for handling
Original file line number Diff line number Diff line change 1
1
# Release notes
2
2
3
- ## Changes from 2.0.0 to 2.1.0
3
+ ## Changes from 2.0.0 to 2.1.1
4
4
5
5
* New ` NDArray ` class for handling multidimensional arrays using compression. It includes:
6
6
- Data type handling (fully compatible with NumPy)
Original file line number Diff line number Diff line change 1
- 2.1.0
1
+ 2.1.1
Original file line number Diff line number Diff line change 6
6
# LICENSE.txt file in the root directory of this source tree)
7
7
#######################################################################
8
8
9
+ from pathlib import Path
9
10
from textwrap import dedent
10
11
11
12
from skbuild import setup
@@ -41,18 +42,8 @@ def cmake_bool(cond):
41
42
42
43
43
44
# read the contents of the README file
44
- long_description = """
45
- Python-Blosc2 is a Python package that wraps C-Blosc2, the newest version of
46
- the Blosc compressor. Python-Blosc2 reproduces quite well the API of its Python-Blosc
47
- predecessor, so it can be used as a drop-in replacement (bar some exceptions; read the
48
- docs if this is important for you).
49
-
50
- In addition, Python-Blosc2 aims to leverage the new C-Blosc2 API so as to support
51
- super-chunks, multi-dimensional arrays, serialization and other bells and whistles
52
- introduced in C-Blosc2.
53
-
54
- More info at: `https://www.blosc.org <https://www.blosc.org>`_
55
- """
45
+ this_directory = Path (__file__ ).parent
46
+ long_description = (this_directory / "README.rst" ).read_text ()
56
47
57
48
setup (
58
49
name = "blosc2" ,
You can’t perform that action at this time.
0 commit comments