14
0

Accepting request 819060 from home:mnhauke

- Update to version 1.3.0
  * add `bitarray.util.make_endian()`
  * `util.ba2hex()` and `util.hex2ba()` now also support
    little-endian
  * add `bitarray.get_default_endian()`
  * made first argument of initializer a positional-only parameter
  * remove `.fromstring()` and `.tostring()` methods, these have
    been deprecated 8 years ago, since version 0.4.0
  * add `__all__` in `bitarray/__init__.py`
  * drop Python 3.3 and 3.4 support
- Update to version 1.2.2
  * `util.ba2hex` now always return a string object (instead of
    bytes object for Python 3), see issue #94
  * `util.hex2ba` allows a unicode object as input on Python 2
  * Determine 64-bitness of interpreter in a cross-platform
    fashion #91, in order to better support PyPy

OBS-URL: https://build.opensuse.org/request/show/819060
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-bitarray?expand=0&rev=3
This commit is contained in:
Tomáš Chvátal
2020-07-07 07:41:08 +00:00
committed by Git OBS Bridge
parent c94ba99df0
commit 354e0eddfc
4 changed files with 24 additions and 4 deletions

View File

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

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

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

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Mon Jul 6 18:40:25 UTC 2020 - Martin Hauke <mardnh@gmx.de>
- Update to version 1.3.0
* add `bitarray.util.make_endian()`
* `util.ba2hex()` and `util.hex2ba()` now also support
little-endian
* add `bitarray.get_default_endian()`
* made first argument of initializer a positional-only parameter
* remove `.fromstring()` and `.tostring()` methods, these have
been deprecated 8 years ago, since version 0.4.0
* add `__all__` in `bitarray/__init__.py`
* drop Python 3.3 and 3.4 support
- Update to version 1.2.2
* `util.ba2hex` now always return a string object (instead of
bytes object for Python 3), see issue #94
* `util.hex2ba` allows a unicode object as input on Python 2
* Determine 64-bitness of interpreter in a cross-platform
fashion #91, in order to better support PyPy
------------------------------------------------------------------- -------------------------------------------------------------------
Tue Mar 24 18:38:34 UTC 2020 - Martin Hauke <mardnh@gmx.de> Tue Mar 24 18:38:34 UTC 2020 - Martin Hauke <mardnh@gmx.de>

View File

@@ -18,7 +18,7 @@
%{?!python_module:%define python_module() python-%{**} python3-%{**}} %{?!python_module:%define python_module() python-%{**} python3-%{**}}
Name: python-bitarray Name: python-bitarray
Version: 1.2.1 Version: 1.3.0
Release: 0 Release: 0
Summary: Efficient Arrays of Booleans Summary: Efficient Arrays of Booleans
License: Python-2.0 License: Python-2.0