2023-07-24 20:43:28 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-bitarray: updated to 2.8.0
2.8.0:
* allow [integer sequence indexing](indexing.rst) by list of indices
* add [masked indexing](indexing.rst) by bitarray masks
* improve `.bytereverse()` docstring
|
2023-07-04 12:09:53 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-bitarray: updated to 2.7.6
2.7.6
remove caching hash value
|
2023-06-13 18:07:47 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-bitarray: updated to 2.7.5
2.7.5:
* fix for pypy3.9-v7.3.11
* enable building wheels for PyPy
|
2023-05-30 06:12:13 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-bitarray: updated to 2.7.4
2.7.4:
* register `bitarray` as `abc.MutableSequence`
* cibuildwheel: update macOS version to 11 from unsupported 10.15, see
https://github.com/actions/runner-images/issues/5583
* improve documentation regarding type when indexing single
bitarray items
|
2023-02-21 07:13:59 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-bitarray: updated to 2.7.3
2.7.3:
* fix popcount64 name conflict on NetBSD
* even though PyPy is not actively supported, allow running tests for
PyPy 3.7 and 3.8
* allow running `python setup.py test`
* add official Python 3.12 support
* simplify count functionality in util module
* retire `bitcount_lookup[256]` table
* improve `util.count_n()` error messages
* avoid `util` module tests from being run more than once in each
call to `bitarray.test()` when called multiple times in the same
Python process
* improve testing
|
2023-02-20 19:10:50 by Thomas Klausner | Files touched by this commit (1) |
Log message:
py-bitarray: fix previous, and make 'test' target work.
All tests pass.
Bump PKGREVISION.
|
2023-02-20 09:47:33 by Thomas Klausner | Files touched by this commit (1) |
Log message:
py-bitarray: fix build on NetBSD
This defines its own popcount.
Reported upstream at
https://github.com/ilanschnell/bitarray/issues/189
|
2023-02-13 11:44:14 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-bitarray: updated to 2.7.2
2.7.2:
* speedup all count functionality by using `__builtin_popcountll` when
available
* add `popcount64()` to `bitarray.h` - we assume now that `uint64_t` is
always available
* improve testing
2.7.1:
* optimize `util.sc_encode()`
|
2023-01-02 09:42:48 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-bitarray: updated to 2.6.2
2.6.2:
* optimize `richcompare()` for opposite endianness
* improve some docstrings add tests
|
2022-12-19 09:16:30 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-bitarray: updated to 2.6.1
2.6.1:
* add documentation on shift operators
* fix typo in iterable initializer description
* optimize `richcompare()`
|