summaryrefslogtreecommitdiffstats
path: root/meta-python
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2021-03-23 18:33:08 +0200
committerKhem Raj <raj.khem@gmail.com>2021-03-24 08:50:45 -0700
commit81bcc422d258e7a984e2480ffb4ad9925eecefbd (patch)
tree570a6c5323199aca53e9750d2d91ff3d8ab79669 /meta-python
parentc8bd8cd1726571d983730997d7f0d7f01102dbad (diff)
downloadmeta-openembedded-81bcc422d258e7a984e2480ffb4ad9925eecefbd.tar.gz
python3-bitarray: Upgrade 1.7.1 -> 1.8.0
Upgrade to release 1.8.0: - Add `bitarray.util.serialize()` and `bitarray.util.deserialize()` - Allow whitespace (ignore space and `\n\r\t\v`) in input strings, e.g. `bitarray('01 11')` or `a += '10 00'` - Add `bitarray.util.pprint()` - When initializing a bitarray from another with different bit endianness, e.g. `a = bitarray('110', 'little')` and `b = bitarray(a, 'big')`, the buffer used to be simply copied, with consequence that `a == b` would result in `False`. This is fixed now, that is `a == b` will always evaluate to `True`. - Add example showing how to jsonize bitarrays - Add tests Signed-off-by: Leon Anavi <leon.anavi@konsulko.com> Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Trevor Gamblin <trevor.gamblin@windriver.com>
Diffstat (limited to 'meta-python')
-rw-r--r--meta-python/recipes-devtools/python/python3-bitarray_1.8.0.bb (renamed from meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb)2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.8.0.bb
index f859283ab2..f38791716e 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_1.8.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray"
3LICENSE = "PSF" 3LICENSE = "PSF"
4LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d" 4LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"
5 5
6SRC_URI[sha256sum] = "e4de977d708b7024760266d827b8285e4405dce4293f25508c4556970139018a" 6SRC_URI[sha256sum] = "fe4444d92b17073bf1f9f24e3015a0e5bb70a645c47df93ef8a9ce8be33fcbad"
7 7
8inherit setuptools3 pypi 8inherit setuptools3 pypi
9 9