Skip to content

Commit 9cf1d28

Browse files
committed
Getting ready for release 2.1.1
1 parent c847ad4 commit 9cf1d28

File tree

4 files changed

+6
-15
lines changed

4 files changed

+6
-15
lines changed

ANNOUNCE.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Announcing Python-Blosc2 2.1.0
1+
Announcing Python-Blosc2 2.1.1
22
==============================
33

44
We are happy to inform that we are introducing `NDArray`, a object for handling

RELEASE_NOTES.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Release notes
22

3-
## Changes from 2.0.0 to 2.1.0
3+
## Changes from 2.0.0 to 2.1.1
44

55
* New `NDArray` class for handling multidimensional arrays using compression. It includes:
66
- Data type handling (fully compatible with NumPy)

VERSION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.1.0
1+
2.1.1

setup.py

+3-12
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
# LICENSE.txt file in the root directory of this source tree)
77
#######################################################################
88

9+
from pathlib import Path
910
from textwrap import dedent
1011

1112
from skbuild import setup
@@ -41,18 +42,8 @@ def cmake_bool(cond):
4142

4243

4344
# 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()
5647

5748
setup(
5849
name="blosc2",

0 commit comments

Comments
 (0)