All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/3] python3-bitarray: Upgrade 1.9.2 -> 2.0.0
@ 2021-04-15  7:22 Leon Anavi
  2021-04-15  7:22 ` [meta-python][PATCH 2/3] python3-xxhash: Upgrade 2.0.0 -> 2.0.2 Leon Anavi
  2021-04-15  7:22 ` [meta-python][PATCH 3/3] python3-xlsxwriter: Upgrade 1.3.8 -> 1.3.9 Leon Anavi
  0 siblings, 2 replies; 3+ messages in thread
From: Leon Anavi @ 2021-04-15  7:22 UTC (permalink / raw
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.0.0:

- require more specific objects, int (0 or 1) or bool
- items are always returned as int 0 or 1
- remove `.length()` method (deprecated since 1.5.1 - use `len()`)
- in `.unpack()` the `one` argument now defaults to 0x01
  (was 0xff)
- `.tolist()` now always returns a list of integers (0 or 1)
- fix frozenbitarray hash function, see #121
- fix frozenbitarray being mutable by `<<=` and `>>=`
- support sequence protocol in `.extend()` (and bitarray creation)
- improve OverflowError messages from `util.int2ba()`
- add examples/hexadecimal.py

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-bitarray_1.9.2.bb => python3-bitarray_2.0.0.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-bitarray_1.9.2.bb => python3-bitarray_2.0.0.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.9.2.bb b/meta-python/recipes-devtools/python/python3-bitarray_2.0.0.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-bitarray_1.9.2.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_2.0.0.bb
index 0716e8e1d8..5c00d7df66 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_1.9.2.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_2.0.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray"
 LICENSE = "PSF"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"
 
-SRC_URI[sha256sum] = "d7a49d21ae04c5af195023b140800186ebf208e3a4fc5b21a1389531cb7a7170"
+SRC_URI[sha256sum] = "ee13850d3237c254c7af8acce2f1a044a1c4f22dcec5380cba7443c8be38f701"
 
 inherit setuptools3 pypi
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-python][PATCH 2/3] python3-xxhash: Upgrade 2.0.0 -> 2.0.2
  2021-04-15  7:22 [meta-python][PATCH 1/3] python3-bitarray: Upgrade 1.9.2 -> 2.0.0 Leon Anavi
@ 2021-04-15  7:22 ` Leon Anavi
  2021-04-15  7:22 ` [meta-python][PATCH 3/3] python3-xlsxwriter: Upgrade 1.3.8 -> 1.3.9 Leon Anavi
  1 sibling, 0 replies; 3+ messages in thread
From: Leon Anavi @ 2021-04-15  7:22 UTC (permalink / raw
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.0.2:

- Fix Travis CI OSX dpl python2.7 get-pip.py error
- Only to trigger Python 3.9 wheels building

License-Update: Update year

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-xxhash_2.0.0.bb => python3-xxhash_2.0.2.bb}     | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-xxhash_2.0.0.bb => python3-xxhash_2.0.2.bb} (63%)

diff --git a/meta-python/recipes-devtools/python/python3-xxhash_2.0.0.bb b/meta-python/recipes-devtools/python/python3-xxhash_2.0.2.bb
similarity index 63%
rename from meta-python/recipes-devtools/python/python3-xxhash_2.0.0.bb
rename to meta-python/recipes-devtools/python/python3-xxhash_2.0.2.bb
index c5add103cd..965e8107d3 100644
--- a/meta-python/recipes-devtools/python/python3-xxhash_2.0.0.bb
+++ b/meta-python/recipes-devtools/python/python3-xxhash_2.0.2.bb
@@ -1,10 +1,9 @@
 SUMMARY = "xxhash is a Python binding for the xxHash library by Yann Collet."
 SECTION = "devel/python"
 LICENSE = "BSD-2-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=5a8d76283514a1b7e6a414aba38629b5"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=3a9dab7f159514231249aa3e108ab26b"
 
-SRC_URI[md5sum] = "010fda0427b621e5fe6930ad42511d88"
-SRC_URI[sha256sum] = "58ca818554c1476fa1456f6cd4b87002e2294f09baf0f81e5a2a4968e62c423c"
+SRC_URI[sha256sum] = "b7bead8cf6210eadf9cecf356e17af794f57c0939a3d420a00d87ea652f87b49"
 
 SRC_URI += " \
     file://run-ptest \
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* [meta-python][PATCH 3/3] python3-xlsxwriter: Upgrade 1.3.8 -> 1.3.9
  2021-04-15  7:22 [meta-python][PATCH 1/3] python3-bitarray: Upgrade 1.9.2 -> 2.0.0 Leon Anavi
  2021-04-15  7:22 ` [meta-python][PATCH 2/3] python3-xxhash: Upgrade 2.0.0 -> 2.0.2 Leon Anavi
@ 2021-04-15  7:22 ` Leon Anavi
  1 sibling, 0 replies; 3+ messages in thread
From: Leon Anavi @ 2021-04-15  7:22 UTC (permalink / raw
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.3.9:

- Added option to set row heights and column widths in pixels via
  the :func:`set_row_pixels` and :func:`set_column_pixels` methods

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...{python3-xlsxwriter_1.3.8.bb => python3-xlsxwriter_1.3.9.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-xlsxwriter_1.3.8.bb => python3-xlsxwriter_1.3.9.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.8.bb b/meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.9.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.8.bb
rename to meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.9.bb
index e89221e5c3..e53dd4d5b9 100644
--- a/meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.8.bb
+++ b/meta-python/recipes-devtools/python/python3-xlsxwriter_1.3.9.bb
@@ -8,6 +8,6 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE = "XlsxWriter"
 
-SRC_URI[sha256sum] = "2b7e22b1268c2ed85d73e5629097c9a63357f2429667ada9863cd05ff8ee33aa"
+SRC_URI[sha256sum] = "eca2e737d0b8df3cd72520fadcda9f48c3581282639965125a86ea8cd04620cf"
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-04-15  7:22 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-04-15  7:22 [meta-python][PATCH 1/3] python3-bitarray: Upgrade 1.9.2 -> 2.0.0 Leon Anavi
2021-04-15  7:22 ` [meta-python][PATCH 2/3] python3-xxhash: Upgrade 2.0.0 -> 2.0.2 Leon Anavi
2021-04-15  7:22 ` [meta-python][PATCH 3/3] python3-xlsxwriter: Upgrade 1.3.8 -> 1.3.9 Leon Anavi

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.