All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-bitarray: Upgrade 2.2.5 -> 2.3.0
@ 2021-08-18  9:40 Leon Anavi
  2021-08-18  9:40 ` [meta-python][PATCH 2/5] python3-langtable: Upgrade 0.0.54 -> 0.0.56 Leon Anavi
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-18  9:40 UTC (permalink / raw
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.3.0:

- add optional `buffer` argument to `bitarray()` to import the
  buffer of another object
- update `.buffer_info()` to include: a read-only flag, an
  imported buffer flag, and the number of buffer exports
- add optional start and stop arguments to `util.rindex()`
- add [memory-mapped file](../examples/mmapped-file.py) example
- ignore underscore (`_`) in string input,
  e.g. `bitarray('1100_0111')`
- add missing type hinting for new `.bytereverse()` arguments
- fix `.extend()` type annotations, #145
- avoid `.reverse()` using temporary memory
- make `.unpack()`, `util.serialize()`, `util.vl_encode()`
  and `.__reduce__()` more memory efficient
- add and improve tests

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

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_2.2.5.bb b/meta-python/recipes-devtools/python/python3-bitarray_2.3.0.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-bitarray_2.2.5.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_2.3.0.bb
index f8e2489070..b198b47004 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_2.2.5.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_2.3.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] = "efb2dc83f0acb832a94af3687eea558d72512cf2e54a64fca56a10aacf57934c"
+SRC_URI[sha256sum] = "21f2e10420f9ae74d3bdfd3cb74947ddbe9fbc0b2e5662f2f039001954f1d8b6"
 
 inherit setuptools3 pypi
 
-- 
2.17.1


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

* [meta-python][PATCH 2/5] python3-langtable: Upgrade 0.0.54 -> 0.0.56
  2021-08-18  9:40 [meta-python][PATCH 1/5] python3-bitarray: Upgrade 2.2.5 -> 2.3.0 Leon Anavi
@ 2021-08-18  9:40 ` Leon Anavi
  2021-08-18  9:40 ` [meta-python][PATCH 3/5] python3-pandas: Upgrade 1.3.1 -> 1.3.2 Leon Anavi
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-18  9:40 UTC (permalink / raw
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.0.56:

- Fallback to translations in “xx” from “xx_Zzzz”
  only if “Zzzz” is the main script of “xx”
- Get translation changes for mt from CLDR

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...python3-langtable_0.0.54.bb => python3-langtable_0.0.56.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-langtable_0.0.54.bb => python3-langtable_0.0.56.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-langtable_0.0.54.bb b/meta-python/recipes-devtools/python/python3-langtable_0.0.56.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-langtable_0.0.54.bb
rename to meta-python/recipes-devtools/python/python3-langtable_0.0.56.bb
index e41cfd5dd5..b8f052ea31 100644
--- a/meta-python/recipes-devtools/python/python3-langtable_0.0.54.bb
+++ b/meta-python/recipes-devtools/python/python3-langtable_0.0.56.bb
@@ -6,8 +6,7 @@ SECTION = "devel/python"
 
 LIC_FILES_CHKSUM = "file://COPYING;md5=d32239bcb673463ab874e80d47fae504"
 
-SRC_URI[md5sum] = "bf2db4302dbed534ff322612f5f5a16e"
-SRC_URI[sha256sum] = "2a6298267586fcade84ce977736fc35102ef95d68975bc90ceaa06117d42d5a6"
+SRC_URI[sha256sum] = "318af0fd616711ce5cd2a7b11a6761183ba9c1ff76a762919e08d85645fc854b"
 
 inherit pypi setuptools3 python3native
 
-- 
2.17.1


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

* [meta-python][PATCH 3/5] python3-pandas: Upgrade 1.3.1 -> 1.3.2
  2021-08-18  9:40 [meta-python][PATCH 1/5] python3-bitarray: Upgrade 2.2.5 -> 2.3.0 Leon Anavi
  2021-08-18  9:40 ` [meta-python][PATCH 2/5] python3-langtable: Upgrade 0.0.54 -> 0.0.56 Leon Anavi
@ 2021-08-18  9:40 ` Leon Anavi
  2021-08-18  9:40 ` [meta-python][PATCH 4/5] python3-tzlocal: Upgrade 2.1 -> 3.0 Leon Anavi
  2021-08-18  9:40 ` [meta-python][PATCH 5/5] python3-zeroconf: Upgrade 0.34.3 -> 0.36.0 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-18  9:40 UTC (permalink / raw
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.3.2:

- Performance regression in DataFrame.isin() and Series.isin() for
  nullable data types
- Regression in updating values of Series using boolean index,
  created by using DataFrame.pop()
- Regression in DataFrame.from_records() with empty records
- Fixed regression in DataFrame.shift() where TypeError occurred
  when shifting DataFrame created by concatenation of slices and
  fills with values
- Regression in DataFrame.agg() when the func argument returned
  lists and axis=1
- Regression in DataFrame.drop() does nothing if MultiIndex has
  duplicates and indexer is a tuple or list of tuples
- Fixed regression where read_csv() raised a ValueError when
  parameters names and prefix were both set to None
- Fixed regression in comparisons between Timestamp object and
  datetime64 objects outside the implementation bounds for
  nanosecond datetime64
- Fixed regression in Styler.highlight_min() and
  Styler.highlight_max() where pandas.NA was not successfully
  ignored
- Fixed regression in concat() where copy=False was not honored
  in axis=1 Series concatenation
- Regression in Series.nlargest() and Series.nsmallest() with
  nullable integer or float dtype
- Fixed regression in Series.quantile() with Int64Dtype
- Bug in read_excel() modifies the dtypes dictionary when reading
  a file with duplicate columns
- 1D slices over extension types turn into N-dimensional slices
  over ExtensionArrays
- Fixed bug in Series.rolling() and DataFrame.rolling() not
  calculating window bounds correctly for the first row when
  center=True and window is an offset that covers all the rows
- Styler.hide_columns() now hides the index name header row as
  well as column headers
- Styler.set_sticky() has amended CSS to control the column/index
  names and ensure the correct sticky positions
- Bug in de-serializing datetime indexes in PYTHONOPTIMIZED mode

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

diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.3.1.bb b/meta-python/recipes-devtools/python/python3-pandas_1.3.2.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-pandas_1.3.1.bb
rename to meta-python/recipes-devtools/python/python3-pandas_1.3.2.bb
index 95fd1fc719..55700b51cf 100644
--- a/meta-python/recipes-devtools/python/python3-pandas_1.3.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pandas_1.3.2.bb
@@ -6,7 +6,7 @@ HOMEPAGE = "http://pandas.pydata.org/"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3f23c5c092b74d245d48eeef72bc3fd2"
 
-SRC_URI[sha256sum] = "341935a594db24f3ff07d1b34d1d231786aa9adfa84b76eab10bf42907c8aed3"
+SRC_URI[sha256sum] = "cbcb84d63867af3411fa063af3de64902665bb5b3d40b25b2059e40603594e87"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 4/5] python3-tzlocal: Upgrade 2.1 -> 3.0
  2021-08-18  9:40 [meta-python][PATCH 1/5] python3-bitarray: Upgrade 2.2.5 -> 2.3.0 Leon Anavi
  2021-08-18  9:40 ` [meta-python][PATCH 2/5] python3-langtable: Upgrade 0.0.54 -> 0.0.56 Leon Anavi
  2021-08-18  9:40 ` [meta-python][PATCH 3/5] python3-pandas: Upgrade 1.3.1 -> 1.3.2 Leon Anavi
@ 2021-08-18  9:40 ` Leon Anavi
  2021-08-18  9:40 ` [meta-python][PATCH 5/5] python3-zeroconf: Upgrade 0.34.3 -> 0.36.0 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-18  9:40 UTC (permalink / raw
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.0:

- Modernized the packaging, moving to setup.cfg etc.
- Handles if the text config files incorrectly is a TZ file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/{python3-tzlocal_2.1.bb => python3-tzlocal_3.0.bb}  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-tzlocal_2.1.bb => python3-tzlocal_3.0.bb} (62%)

diff --git a/meta-python/recipes-devtools/python/python3-tzlocal_2.1.bb b/meta-python/recipes-devtools/python/python3-tzlocal_3.0.bb
similarity index 62%
rename from meta-python/recipes-devtools/python/python3-tzlocal_2.1.bb
rename to meta-python/recipes-devtools/python/python3-tzlocal_3.0.bb
index 56a8fc06f8..a9d372ee98 100644
--- a/meta-python/recipes-devtools/python/python3-tzlocal_2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-tzlocal_3.0.bb
@@ -3,7 +3,6 @@ HOMEPAGE = "https://pypi.org/project/tzlocal/"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=57e0bd61643d81d05683cdce65b11d10"
 
-SRC_URI[md5sum] = "c0877603ff9de71cd8ca6ee2b50d2ebd"
-SRC_URI[sha256sum] = "643c97c5294aedc737780a49d9df30889321cbe1204eac2c2ec6134035a92e44"
+SRC_URI[sha256sum] = "f4e6e36db50499e0d92f79b67361041f048e2609d166e93456b50746dc4aef12"
 
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 5/5] python3-zeroconf: Upgrade 0.34.3 -> 0.36.0
  2021-08-18  9:40 [meta-python][PATCH 1/5] python3-bitarray: Upgrade 2.2.5 -> 2.3.0 Leon Anavi
                   ` (2 preceding siblings ...)
  2021-08-18  9:40 ` [meta-python][PATCH 4/5] python3-tzlocal: Upgrade 2.1 -> 3.0 Leon Anavi
@ 2021-08-18  9:40 ` Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-18  9:40 UTC (permalink / raw
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.36.0:

- Fill incomplete IPv6 tuples to avoid WinError on windows

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

diff --git a/meta-python/recipes-devtools/python/python3-zeroconf_0.34.3.bb b/meta-python/recipes-devtools/python/python3-zeroconf_0.36.0.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-zeroconf_0.34.3.bb
rename to meta-python/recipes-devtools/python/python3-zeroconf_0.36.0.bb
index a8b9aeb73b..5f6f0a2987 100644
--- a/meta-python/recipes-devtools/python/python3-zeroconf_0.34.3.bb
+++ b/meta-python/recipes-devtools/python/python3-zeroconf_0.36.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/jstasiak/python-zeroconf"
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=3bb705b228ea4a14ea2728215b780d80"
 
-SRC_URI[sha256sum] = "145e67c182d361b350f057fb9240dedec5e79a7c61f465a01138d4a49a4b87b3"
+SRC_URI[sha256sum] = "549f685a318c06d5345ed6533f54f33b206816b564ed7f7876e7b9522e77bf29"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

end of thread, other threads:[~2021-08-18  9:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-08-18  9:40 [meta-python][PATCH 1/5] python3-bitarray: Upgrade 2.2.5 -> 2.3.0 Leon Anavi
2021-08-18  9:40 ` [meta-python][PATCH 2/5] python3-langtable: Upgrade 0.0.54 -> 0.0.56 Leon Anavi
2021-08-18  9:40 ` [meta-python][PATCH 3/5] python3-pandas: Upgrade 1.3.1 -> 1.3.2 Leon Anavi
2021-08-18  9:40 ` [meta-python][PATCH 4/5] python3-tzlocal: Upgrade 2.1 -> 3.0 Leon Anavi
2021-08-18  9:40 ` [meta-python][PATCH 5/5] python3-zeroconf: Upgrade 0.34.3 -> 0.36.0 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.