diff options
author | Wang Mingyu <wangmy@fujitsu.com> | 2023-02-08 16:08:36 +0800 |
---|---|---|
committer | Khem Raj <raj.khem@gmail.com> | 2023-02-08 08:51:44 -0800 |
commit | ff5732a81286f7056318bb65b00c0c5d801e315c (patch) | |
tree | 5dc994fae938d65d26fc6349ce2c1104b4f47b49 /meta-python/recipes-devtools/python/python3-bitarray_2.7.0.bb | |
parent | c3c5ea4e678aa75840f715ea1aaa8ce13567281e (diff) | |
download | meta-openembedded-ff5732a81286f7056318bb65b00c0c5d801e315c.tar.gz |
python3-bitarray: upgrade 2.6.2 -> 2.7.0
Changelog:
==========
* add 'util.sc_encode()' and 'util.sc_decode()' for
[compression of sparse bitarrays](sparse_compression.rst)
* add 'util.any_and()'
* add 'util.intervals()'
* move functionality of the following utility functions entirely to C:
'hex2ba()', 'base2ba()', 'deserialize()', 'vl_decode()', 'zeros()'
* improve error checking for unpickling
* add [distance metrics](../examples/distance.py) example:
dice, hamming, jaccard, kulczynski1, rogerstanimoto, russellrao,
sokalmichener, sokalsneath, yule
* add example [sparse bitarray](../examples/sparse) implementations
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-python/recipes-devtools/python/python3-bitarray_2.7.0.bb')
-rw-r--r-- | meta-python/recipes-devtools/python/python3-bitarray_2.7.0.bb | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-bitarray_2.7.0.bb b/meta-python/recipes-devtools/python/python3-bitarray_2.7.0.bb new file mode 100644 index 0000000000..269ac83ad1 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-bitarray_2.7.0.bb | |||
@@ -0,0 +1,10 @@ | |||
1 | SUMMARY = "A high-level Python efficient arrays of booleans -- C extension" | ||
2 | HOMEPAGE = "https://github.com/ilanschnell/bitarray" | ||
3 | LICENSE = "PSF-2.0" | ||
4 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d" | ||
5 | |||
6 | SRC_URI[sha256sum] = "00bb723cf7059e30b328b6568b3b75c0f652ec9228d959d54e997852a31a31a2" | ||
7 | |||
8 | inherit setuptools3 pypi | ||
9 | |||
10 | BBCLASSEXTEND = "native nativesdk" | ||