From 6b6ced3745058b545042334a687de27863b1a7387f077de1a676a2a455356202 Mon Sep 17 00:00:00 2001 From: Dirk Mueller Date: Thu, 5 Oct 2023 09:34:21 +0000 Subject: [PATCH] - 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 --- bitarray-2.8.1.tar.gz | 3 --- bitarray-2.8.2.tar.gz | 3 +++ python-bitarray.changes | 20 ++++++++++++++++---- python-bitarray.spec | 2 +- 4 files changed, 20 insertions(+), 8 deletions(-) delete mode 100644 bitarray-2.8.1.tar.gz create mode 100644 bitarray-2.8.2.tar.gz diff --git a/bitarray-2.8.1.tar.gz b/bitarray-2.8.1.tar.gz deleted file mode 100644 index d54d9b3..0000000 --- a/bitarray-2.8.1.tar.gz +++ /dev/null @@ -1,3 +0,0 @@ -version https://git-lfs.github.com/spec/v1 -oid sha256:f2ed1dee84eec9f9d5040d9b0e947c6be7a997bfe26d73e15262fb646ce74d70 -size 176489 diff --git a/bitarray-2.8.2.tar.gz b/bitarray-2.8.2.tar.gz new file mode 100644 index 0000000..f0c8d29 --- /dev/null +++ b/bitarray-2.8.2.tar.gz @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:820ec91b496fee557692461b0d7d6295151c0d722adea0e5f68f24f1dac3b7fd +size 176662 diff --git a/python-bitarray.changes b/python-bitarray.changes index 9596245..902ed72 100644 --- a/python-bitarray.changes +++ b/python-bitarray.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Thu Oct 5 09:32:42 UTC 2023 - Dirk Müller + +- 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 @@ -76,7 +88,7 @@ Mon Jan 2 18:35:34 UTC 2023 - Dirk Müller * 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 @@ -112,7 +124,7 @@ Fri Sep 23 02:36:48 UTC 2022 - Yogalakshmi Arunachalam - 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 @@ -284,12 +296,12 @@ Wed Sep 30 04:35:36 UTC 2020 - Steve Kowalik - 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 -- 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 diff --git a/python-bitarray.spec b/python-bitarray.spec index f8fd319..3ba3878 100644 --- a/python-bitarray.spec +++ b/python-bitarray.spec @@ -18,7 +18,7 @@ %{?!python_module:%define python_module() python-%{**} python3-%{**}} Name: python-bitarray -Version: 2.8.1 +Version: 2.8.2 Release: 0 Summary: Efficient Arrays of Booleans License: Python-2.0