14
0

- update to 2.8.2:

* improve error messages for masked assignment
  * simplify test collection
  * added ``pytest.ini`` to allow running pytest with no
    additional arguments
  * ``util.sc_encode()``: avoid writing empty blocks at end of
    compressed stream, ie. skip encoding when total population
    count is reached
  * optimize `richcompare()`
  * `.bytereverse()` no longer sets unused pad bits to zero
  * fix `sys.getsizeof(bitarray)` by adding `.__sizeof__()`, see issue #100
- Update to 1.5.2:

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bitarray?expand=0&rev=40
This commit is contained in:
2023-10-05 09:34:21 +00:00
committed by Git OBS Bridge
parent a977a5170d
commit 6b6ced3745
4 changed files with 20 additions and 8 deletions

View File

@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Thu Oct 5 09:32:42 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 2.8.2:
* improve error messages for masked assignment
* simplify test collection
* added ``pytest.ini`` to allow running pytest with no
additional arguments
* ``util.sc_encode()``: avoid writing empty blocks at end of
compressed stream, ie. skip encoding when total population
count is reached
-------------------------------------------------------------------
Wed Aug 9 07:48:36 UTC 2023 - Dirk Müller <dmueller@suse.com>
@@ -76,7 +88,7 @@ Mon Jan 2 18:35:34 UTC 2023 - Dirk Müller <dmueller@suse.com>
* improve some docstrings add tests
* add documentation on shift operators, #181
* fix typo in iterable initializer description, #179
* optimize `richcompare()`
* optimize `richcompare()`
-------------------------------------------------------------------
Fri Sep 23 02:36:48 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
@@ -112,7 +124,7 @@ Fri Sep 23 02:36:48 UTC 2022 - Yogalakshmi Arunachalam <yarunachalam@suse.com>
- Update to 2.4.1:
* improve `resize()`, see #167
* optimize `copy_n()` by avoiding loops, #171
* `.bytereverse()` no longer sets unused pad bits to zero
* `.bytereverse()` no longer sets unused pad bits to zero
-------------------------------------------------------------------
Sun Mar 27 14:18:57 UTC 2022 - Dirk Müller <dmueller@suse.com>
@@ -284,12 +296,12 @@ Wed Sep 30 04:35:36 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 1.5.3:
* add optional index parameter to `.index()` to invert single bit
* fix `sys.getsizeof(bitarray)` by adding `.__sizeof__()`, see issue #100
* fix `sys.getsizeof(bitarray)` by adding `.__sizeof__()`, see issue #100
-------------------------------------------------------------------
Mon Aug 31 04:58:58 UTC 2020 - Steve Kowalik <steven.kowalik@suse.com>
- Update to 1.5.2:
- Update to 1.5.2:
* add PyType_Ready usage, issue #66
* speedup search() for bitarrays with length 1 in sparse bitarrays,
see issue #67