diff options
| author | Wang Mingyu <wangmy@fujitsu.com> | 2025-05-21 16:58:53 +0800 |
|---|---|---|
| committer | Khem Raj <raj.khem@gmail.com> | 2025-05-21 07:39:36 -0700 |
| commit | 81e2e64183e05585c8e13a93ed98e06ea139bfe0 (patch) | |
| tree | 6422299b5444dd62a73c100306ecee0bd1f79bec /meta-python/recipes-devtools/python/python3-bitarray_3.4.1.bb | |
| parent | cd708ce8a51d3d05f5c962e59f27189eb9d565e4 (diff) | |
| download | meta-openembedded-81e2e64183e05585c8e13a93ed98e06ea139bfe0.tar.gz | |
python3-bitarray: upgrade 3.3.1 -> 3.4.1
Changelog:
==========
* add 'pyproject.toml'
* implement 'bits2bytes()' in C
* optimize 'delslice()' when 'step' is larger than about 5
* consistently name '*_span()' and '*_range()' in C for
invert, set and count
* organize and add tests
* remove '.endian()' method in favor of data descriptor '.endian'
* allow bitarray initializer 'bytes' or 'bytearray' to set buffer directly
* allow calling '.extend()' with 'bytes' object (although the only
valid bytes are 0x00 and 0x01)
* add 'util.byteswap()'
* add 'util.correspond_all()'
* fix '.reverse()' for imported buffer
* drop Python 3.5 support
* add tests
* fix off-by-one-error in check for length of count argument
in 'util.canonical_decode()'
* simplify 'util.int2ba()'
* add tests
* add [masked indexing example](../examples/masked.py)
* add [tricks example](../examples/tricks.py)
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_3.4.1.bb')
| -rw-r--r-- | meta-python/recipes-devtools/python/python3-bitarray_3.4.1.bb | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta-python/recipes-devtools/python/python3-bitarray_3.4.1.bb b/meta-python/recipes-devtools/python/python3-bitarray_3.4.1.bb new file mode 100644 index 0000000000..01030b43f7 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-bitarray_3.4.1.bb | |||
| @@ -0,0 +1,11 @@ | |||
| 1 | SUMMARY = "efficient arrays of booleans -- C extension" | ||
| 2 | DESCRIPTION = "A high-level Python efficient arrays of booleans -- C extension" | ||
| 3 | HOMEPAGE = "https://github.com/ilanschnell/bitarray" | ||
| 4 | LICENSE = "PSF-2.0" | ||
| 5 | LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=6abe80c028e4ee53045a33ae807c64fd" | ||
| 6 | |||
| 7 | SRC_URI[sha256sum] = "e5fa88732bbcfb5437ee554e18f842a8f6c86be73656b0580ee146fd373176c9" | ||
| 8 | |||
| 9 | inherit setuptools3 pypi | ||
| 10 | |||
| 11 | BBCLASSEXTEND = "native nativesdk" | ||
