diff options
| author | Leon Anavi <leon.anavi@konsulko.com> | 2021-03-23 18:33:08 +0200 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2021-03-24 08:50:45 -0700 |
| commit | 81bcc422d258e7a984e2480ffb4ad9925eecefbd (patch) | |
| tree | 570a6c5323199aca53e9750d2d91ff3d8ab79669 /meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb | |
| parent | c8bd8cd1726571d983730997d7f0d7f01102dbad (diff) | |
| download | meta-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/recipes-devtools/python/python3-bitarray_1.7.1.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb deleted file mode 100644 index f859283ab2..0000000000 --- a/meta-python/recipes-devtools/python/python3-bitarray_1.7.1.bb +++ /dev/null | |||
| @@ -1,10 +0,0 @@ | |||
| 1 | SUMMARY = "A high-level Python efficient arrays of booleans -- C extension" | ||
| 2 | HOMEPAGE = "https://github.com/ilanschnell/bitarray" | ||
| 3 | LICENSE = "PSF" | ||
| 4 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d" | ||
| 5 | |||
| 6 | SRC_URI[sha256sum] = "e4de977d708b7024760266d827b8285e4405dce4293f25508c4556970139018a" | ||
| 7 | |||
| 8 | inherit setuptools3 pypi | ||
| 9 | |||
| 10 | BBCLASSEXTEND = "native nativesdk" | ||
