17
0

8 Commits

Author SHA256 Message Date
b42886dc2f Accepting request 1318259 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1318259
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-bitarray?expand=0&rev=42
2025-11-18 14:35:34 +00:00
e5ea7c61e3 - Update to 3.8.0
* add experimental support for free-threaded builds (GIL disabled), #234
  * remove `_set_default_endian()`
  * add `.__bytes__()`, see #246

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bitarray?expand=0&rev=82
2025-11-17 15:09:01 +00:00
00331f1576 Accepting request 1312824 from devel:languages:python
- Update to 3.7.2
  * enable `util.random_k()` for all supported Python versions,
    previously this functions required Python 3.9 or higher
  * add official Python 3.14 support
  * update cibuildwheel to 3.2.0 (forwarded request 1312727 from glaubitz)

OBS-URL: https://build.opensuse.org/request/show/1312824
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-bitarray?expand=0&rev=41
2025-10-22 10:15:38 +00:00
3725bcdcb7 - Update to 3.7.2
* enable `util.random_k()` for all supported Python versions,
    previously this functions required Python 3.9 or higher
  * add official Python 3.14 support
  * update cibuildwheel to 3.2.0

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bitarray?expand=0&rev=80
2025-10-21 11:50:34 +00:00
d356455389 Accepting request 1303573 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1303573
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-bitarray?expand=0&rev=40
2025-09-10 15:30:30 +00:00
a44986b8f4 - Update to 3.7.1
* fix type hinting for memoryviews, see #241
  * add [bit-endianness](endianness.rst) documentation
  * improve testing, including debug mode test for `digit_to_int()`
- from version 3.7.0
  * add `util.gen_primes()`, generate bitarrays in which active indices are
    prime numbers
  * improve `.buffer_info()` to return named tuple
  * add optional `mode` argument to `util.sum_indices()` to sum square of
    active indices
  * improve internal `_sysinfo()` to include `Py_DEBUG`
  * add [Dubner's conjecture](../examples/dubner.rst) (in memory of Harvey
    Dubner)
  * add [dynamically growing sieve](../examples/dyn_sieve.py)
- from version 3.6.1
  * add development files for statistical tests in `devel/random/`
  * optimize `util.sum_indices()`
  * fix RecursionError in `util.random_k()`, see #239
  * add `devel/test_sum_indices.py`

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bitarray?expand=0&rev=78
2025-09-10 09:12:30 +00:00
0a695f4895 Accepting request 1300103 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/1300103
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-bitarray?expand=0&rev=39
2025-08-19 14:44:00 +00:00
6bfe3a7f20 - Update to 3.6.0
* add `util.random_k()`, see #237
  * add `util.sum_indices()`
  * optimize `util.xor_indices()`
  * move development files from `examples/` to `devel/`
- Adjust file paths for removing .gitignore files from source

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bitarray?expand=0&rev=76
2025-08-11 21:28:20 +00:00
4 changed files with 55 additions and 5 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:3a8bdf36e009a31568aab9fb49d195b3dc9dceba30ac9233fa1622641db84ae6
size 215732

3
bitarray-3.8.0.tar.gz Normal file
View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:ad93e3820973fded547b78b233ca7a0fd6489012d25fe2504703f44ea022e1fb
size 237579

View File

@@ -1,3 +1,53 @@
-------------------------------------------------------------------
Mon Nov 17 09:31:56 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 3.8.0
* add experimental support for free-threaded builds (GIL disabled), #234
* remove `_set_default_endian()`
* add `.__bytes__()`, see #246
-------------------------------------------------------------------
Tue Oct 21 09:19:26 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 3.7.2
* enable `util.random_k()` for all supported Python versions,
previously this functions required Python 3.9 or higher
* add official Python 3.14 support
* update cibuildwheel to 3.2.0
-------------------------------------------------------------------
Wed Sep 10 06:04:56 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 3.7.1
* fix type hinting for memoryviews, see #241
* add [bit-endianness](endianness.rst) documentation
* improve testing, including debug mode test for `digit_to_int()`
- from version 3.7.0
* add `util.gen_primes()`, generate bitarrays in which active indices are
prime numbers
* improve `.buffer_info()` to return named tuple
* add optional `mode` argument to `util.sum_indices()` to sum square of
active indices
* improve internal `_sysinfo()` to include `Py_DEBUG`
* add [Dubner's conjecture](../examples/dubner.rst) (in memory of Harvey
Dubner)
* add [dynamically growing sieve](../examples/dyn_sieve.py)
- from version 3.6.1
* add development files for statistical tests in `devel/random/`
* optimize `util.sum_indices()`
* fix RecursionError in `util.random_k()`, see #239
* add `devel/test_sum_indices.py`
-------------------------------------------------------------------
Mon Aug 11 14:06:41 UTC 2025 - John Paul Adrian Glaubitz <adrian.glaubitz@suse.com>
- Update to 3.6.0
* add `util.random_k()`, see #237
* add `util.sum_indices()`
* optimize `util.xor_indices()`
* move development files from `examples/` to `devel/`
- Adjust file paths for removing .gitignore files from source
-------------------------------------------------------------------
Tue Jul 22 09:53:19 UTC 2025 - Dirk Müller <dmueller@suse.com>

View File

@@ -18,7 +18,7 @@
%{?sle15_python_module_pythons}
Name: python-bitarray
Version: 3.5.2
Version: 3.8.0
Release: 0
Summary: Efficient Arrays of Booleans
License: Python-2.0
@@ -59,7 +59,7 @@ export CFLAGS="%{optflags}"
%install
%pyproject_install
%python_expand %fdupes %{buildroot}%{$python_sitearch}
rm examples/resize/.gitignore examples/puff/.gitignore
rm devel/resize/.gitignore examples/puff/.gitignore
%check
# tests don't run from within the source directory