All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.11 -> 1.4.0
@ 2020-11-12 10:56 Leon Anavi
  2020-11-12 10:56 ` [meta-python][PATCH 2/5] python3-dill: Upgrade 0.3.2 -> 0.3.3 Leon Anavi
                   ` (4 more replies)
  0 siblings, 5 replies; 10+ messages in thread
From: Leon Anavi @ 2020-11-12 10:56 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.4.0:

- Fixed tab completion crash on Windows
- Changed how multiline doc string help is formatted to match
  style of other help messages

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/{python3-cmd2_1.3.11.bb => python3-cmd2_1.4.0.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-cmd2_1.3.11.bb => python3-cmd2_1.4.0.bb} (75%)

diff --git a/meta-python/recipes-devtools/python/python3-cmd2_1.3.11.bb b/meta-python/recipes-devtools/python/python3-cmd2_1.4.0.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-cmd2_1.3.11.bb
rename to meta-python/recipes-devtools/python/python3-cmd2_1.4.0.bb
index 3b2aa5b744..dfe493bd2a 100644
--- a/meta-python/recipes-devtools/python/python3-cmd2_1.3.11.bb
+++ b/meta-python/recipes-devtools/python/python3-cmd2_1.4.0.bb
@@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=9791cd24ca7d1807388ccd55cd066def"
 
 DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 
-SRC_URI[md5sum] = "7e3dbe0aefa331e80f515d3c41cc3b8c"
-SRC_URI[sha256sum] = "826a288ee6d9c4ec1184e64e9566c09d3b73be8f4283c1898fa4332f1daf8dbf"
+SRC_URI[md5sum] = "520afccc1d46f833d117a23fab76ed8f"
+SRC_URI[sha256sum] = "e59fa932418603af4e046a96c8985812b05af8a73bfd9d7a386cd1b02c6ab687"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 2/5] python3-dill: Upgrade 0.3.2 -> 0.3.3
  2020-11-12 10:56 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.11 -> 1.4.0 Leon Anavi
@ 2020-11-12 10:56 ` Leon Anavi
  2020-11-18 15:52   ` [oe] " Trevor Gamblin
  2020-11-12 10:56 ` [meta-python][PATCH 3/5] python3-colorlog: Upgrade 4.4.0 -> 4.6.2 Leon Anavi
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-11-12 10:56 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.3.3:

- Treat extension modules as built-in
- Fix typo in README.md

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../recipes-devtools/python/python3-dill_0.3.2.bb     |  9 ---------
 .../recipes-devtools/python/python3-dill_0.3.3.bb     | 11 +++++++++++
 2 files changed, 11 insertions(+), 9 deletions(-)
 delete mode 100644 meta-python/recipes-devtools/python/python3-dill_0.3.2.bb
 create mode 100644 meta-python/recipes-devtools/python/python3-dill_0.3.3.bb

diff --git a/meta-python/recipes-devtools/python/python3-dill_0.3.2.bb b/meta-python/recipes-devtools/python/python3-dill_0.3.2.bb
deleted file mode 100644
index b03e032669..0000000000
--- a/meta-python/recipes-devtools/python/python3-dill_0.3.2.bb
+++ /dev/null
@@ -1,9 +0,0 @@
-inherit pypi setuptools3
-
-SUMMARY = "Serialize all of python"
-LICENSE = "BSD"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=90fee9f98d11d59df3f8aa813ff9a3de"
-
-SRC_URI = "https://files.pythonhosted.org/packages/e2/96/518a8ea959a734b70d2e95fef98bcbfdc7adad1c1e5f5dd9148c835205a5/dill-${PV}.zip"
-SRC_URI[md5sum] = "543607e0a419f154dca65265e87e4812"
-SRC_URI[sha256sum] = "6e12da0d8e49c220e8d6e97ee8882002e624f1160289ce85ec2cc0a5246b3a2e"
diff --git a/meta-python/recipes-devtools/python/python3-dill_0.3.3.bb b/meta-python/recipes-devtools/python/python3-dill_0.3.3.bb
new file mode 100644
index 0000000000..bf26ba30b5
--- /dev/null
+++ b/meta-python/recipes-devtools/python/python3-dill_0.3.3.bb
@@ -0,0 +1,11 @@
+SUMMARY = "Serialize all of python"
+HOMEPAGE = "https://pypi.org/project/dill/"
+LICENSE = "BSD"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=90fee9f98d11d59df3f8aa813ff9a3de"
+
+SRC_URI[md5sum] = "99c878e2e4e924f3234c0efcbcff6abf"
+SRC_URI[sha256sum] = "efb7f6cb65dba7087c1e111bb5390291ba3616741f96840bfc75792a1a9b5ded"
+
+inherit pypi setuptools3
+
+PYPI_PACKAGE_EXT = "zip"
-- 
2.17.1


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

* [meta-python][PATCH 3/5] python3-colorlog: Upgrade 4.4.0 -> 4.6.2
  2020-11-12 10:56 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.11 -> 1.4.0 Leon Anavi
  2020-11-12 10:56 ` [meta-python][PATCH 2/5] python3-dill: Upgrade 0.3.2 -> 0.3.3 Leon Anavi
@ 2020-11-12 10:56 ` Leon Anavi
  2020-11-18 15:52   ` [oe] " Trevor Gamblin
  2020-11-12 10:56 ` [meta-python][PATCH 4/5] python3-pandas: Upgrade 1.1.3 -> 1.1.4 Leon Anavi
                   ` (2 subsequent siblings)
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-11-12 10:56 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 4.6.2:

- Include tests using MANIFEST.in instead of setup.py
- Switch to GitHub Actions
- Don't publish to test pypi - we'd have to bump the version
  every commit

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-colorlog_4.4.0.bb => python3-colorlog_4.6.2.bb}  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-colorlog_4.4.0.bb => python3-colorlog_4.6.2.bb} (65%)

diff --git a/meta-python/recipes-devtools/python/python3-colorlog_4.4.0.bb b/meta-python/recipes-devtools/python/python3-colorlog_4.6.2.bb
similarity index 65%
rename from meta-python/recipes-devtools/python/python3-colorlog_4.4.0.bb
rename to meta-python/recipes-devtools/python/python3-colorlog_4.6.2.bb
index 4a40ef38cf..e98d276f06 100644
--- a/meta-python/recipes-devtools/python/python3-colorlog_4.4.0.bb
+++ b/meta-python/recipes-devtools/python/python3-colorlog_4.6.2.bb
@@ -7,5 +7,5 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE = "colorlog"
 
-SRC_URI[md5sum] = "0997566a87c6fdec0baa88055adc06c3"
-SRC_URI[sha256sum] = "0272c537469ab1e63b9915535874d15b671963c9325db0c4891a2aeff97ce3d1"
+SRC_URI[md5sum] = "72441753be8ec437af9e5bb89db344e7"
+SRC_URI[sha256sum] = "54e5f153419c22afc283c130c4201db19a3dbd83221a0f4657d5ee66234a2ea4"
-- 
2.17.1


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

* [meta-python][PATCH 4/5] python3-pandas: Upgrade 1.1.3 -> 1.1.4
  2020-11-12 10:56 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.11 -> 1.4.0 Leon Anavi
  2020-11-12 10:56 ` [meta-python][PATCH 2/5] python3-dill: Upgrade 0.3.2 -> 0.3.3 Leon Anavi
  2020-11-12 10:56 ` [meta-python][PATCH 3/5] python3-colorlog: Upgrade 4.4.0 -> 4.6.2 Leon Anavi
@ 2020-11-12 10:56 ` Leon Anavi
  2020-11-18 15:52   ` [oe] " Trevor Gamblin
  2020-11-12 10:56 ` [meta-python][PATCH 5/5] python3-attrs: 20.2.0 -> 20.3.0 Leon Anavi
  2020-11-18 15:51 ` [oe] [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.11 -> 1.4.0 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-11-12 10:56 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.1.4:

- Fixed regression in read_csv() raising a ValueError when names
  was of type dict_keys
- Fixed regression in read_csv() with more than 1M rows and
  specifying a index_col argument
- Fixed regression where attempting to mutate a DateOffset object
  would no longer raise an AttributeError
- Fixed regression where DataFrame.agg() would fail with TypeError
  when passed positional arguments to be passed on to the
  aggregation function
- Fixed regression in RollingGroupby with sort=False not being
  respected
- Fixed regression in Series.astype() converting None to "nan"
  when casting to string
- Fixed regression in Series.rank() method failing for read-only
  data
- Fixed regression in RollingGroupby causing a segmentation fault
  with Index of dtype object
- Fixed regression in DataFrame.resample(...).apply(...)() raised
  AttributeError when input was a DataFrame and only a Series was
  evaluated
- Fixed regression in DataFrame.groupby(..).std() with nullable
  integer dtype
- Fixed regression in PeriodDtype comparing both equal and unequal
  to its string representation
- Fixed regression where slicing DatetimeIndex raised AssertionError
  on irregular time series with pd.NaT or on unsorted indices
- Fixed regression in certain offsets (pd.offsets.Day() and below)
  no longer being hashable
- Fixed regression in StataReader which required chunksize to be
  manually set when using an iterator to read a dataset
- Fixed regression in setitem with DataFrame.iloc() which raised
  error when trying to set a value while filtering with a boolean
  list
- Fixed regression in setitem with a Series getting aligned before
  setting the values
- Fixed regression in MultiIndex.is_monotonic_increasing returning
  wrong results with NaN in at least one of the levels
- Fixed regression in inplace arithmetic operation on a Series not
  updating the parent DataFrame
- Fixed bug causing groupby(...).sum() and similar to not preserve
  metadata
- Fixed bug in Series.isin() and DataFrame.isin() raising a
  ValueError when the target was read-only
- Fixed bug in GroupBy.fillna() that introduced a performance
  regression after 1.0.5
- Fixed bug in DataFrame.info() was raising a KeyError when the
  DataFrame has integer column names
- Fixed bug in DataFrameGroupby.apply() would drop a
  CategoricalIndex when grouped on

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-pandas_1.1.3.bb => python3-pandas_1.1.4.bb}      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pandas_1.1.3.bb => python3-pandas_1.1.4.bb} (83%)

diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb b/meta-python/recipes-devtools/python/python3-pandas_1.1.4.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb
rename to meta-python/recipes-devtools/python/python3-pandas_1.1.4.bb
index da1ffd0b6d..78730b46af 100644
--- a/meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb
+++ b/meta-python/recipes-devtools/python/python3-pandas_1.1.4.bb
@@ -6,8 +6,8 @@ HOMEPAGE = "http://pandas.pydata.org/"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c2a8f987b2ce77c368c6b3e1b5b10774"
 
-SRC_URI[md5sum] = "f10372d83a1c55cae217e8c05bf9bc5d"
-SRC_URI[sha256sum] = "babbeda2f83b0686c9ad38d93b10516e68cdcd5771007eb80a763e98aaf44613"
+SRC_URI[md5sum] = "594e6a429f297c77470e37d3510cccbb"
+SRC_URI[sha256sum] = "a979d0404b135c63954dea79e6246c45dd45371a88631cdbb4877d844e6de3b6"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 5/5] python3-attrs: 20.2.0 -> 20.3.0
  2020-11-12 10:56 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.11 -> 1.4.0 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-11-12 10:56 ` [meta-python][PATCH 4/5] python3-pandas: Upgrade 1.1.3 -> 1.1.4 Leon Anavi
@ 2020-11-12 10:56 ` Leon Anavi
  2020-11-18 15:52   ` [oe] " Trevor Gamblin
  2020-11-18 15:51 ` [oe] [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.11 -> 1.4.0 Trevor Gamblin
  4 siblings, 1 reply; 10+ messages in thread
From: Leon Anavi @ 2020-11-12 10:56 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 20.3.0:

- attr.define(), attr.frozen(), attr.mutable(), and attr.field()
  remain provisional.
- attr.s() now has a field_transformer hook that is called for all
  Attributes and returns a (modified or updated) list of Attribute
  instances. attr.asdict() has a value_serializer hook that can
  change the way values are converted. Both hooks are meant to
  help with data (de-)serialization workflows.
- kw_only=True now works on Python 2.
- raise from now works on frozen classes on PyPy.
- attr.asdict() and attr.astuple() now treat frozensets like sets
  with regards to the retain_collection_types argument.
- The type stubs for attr.s() and attr.make_class() are not
  missing the collect_by_mro argument anymore.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-attrs_20.2.0.bb => python3-attrs_20.3.0.bb}      | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-attrs_20.2.0.bb => python3-attrs_20.3.0.bb} (74%)

diff --git a/meta-python/recipes-devtools/python/python3-attrs_20.2.0.bb b/meta-python/recipes-devtools/python/python3-attrs_20.3.0.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python3-attrs_20.2.0.bb
rename to meta-python/recipes-devtools/python/python3-attrs_20.3.0.bb
index c2a5b90515..55cfda7180 100644
--- a/meta-python/recipes-devtools/python/python3-attrs_20.2.0.bb
+++ b/meta-python/recipes-devtools/python/python3-attrs_20.3.0.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "http://www.attrs.org/"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d4ab25949a73fe7d4fdee93bcbdbf8ff"
 
-SRC_URI[sha256sum] = "26b54ddbbb9ee1d34d5d3668dd37d6cf74990ab23c828c2888dccdceee395594"
-SRC_URI[md5sum] = "7be95e1b35e9385d71a0017a48217efc"
+SRC_URI[sha256sum] = "832aa3cde19744e49938b91fea06d69ecb9e649c93ba974535d08ad92164f700"
+SRC_URI[md5sum] = "4fe38f89297b2b446d83190fce189f29"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.11 -> 1.4.0
  2020-11-12 10:56 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.11 -> 1.4.0 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-11-12 10:56 ` [meta-python][PATCH 5/5] python3-attrs: 20.2.0 -> 20.3.0 Leon Anavi
@ 2020-11-18 15:51 ` Trevor Gamblin
  4 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-11-18 15:51 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1638 bytes --]


On 2020-11-12 5:56 a.m., Leon Anavi wrote:
> [Please note this e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 1.4.0:
>
> - Fixed tab completion crash on Windows
> - Changed how multiline doc string help is formatted to match
>    style of other help messages
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-cmd2_1.3.11.bb => python3-cmd2_1.4.0.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-cmd2_1.3.11.bb => python3-cmd2_1.4.0.bb} (75%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-cmd2_1.3.11.bb b/meta-python/recipes-devtools/python/python3-cmd2_1.4.0.bb
> similarity index 75%
> rename from meta-python/recipes-devtools/python/python3-cmd2_1.3.11.bb
> rename to meta-python/recipes-devtools/python/python3-cmd2_1.4.0.bb
> index 3b2aa5b744..dfe493bd2a 100644
> --- a/meta-python/recipes-devtools/python/python3-cmd2_1.3.11.bb
> +++ b/meta-python/recipes-devtools/python/python3-cmd2_1.4.0.bb
> @@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=9791cd24ca7d1807388ccd55cd066def"
>
>   DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
>
> -SRC_URI[md5sum] = "7e3dbe0aefa331e80f515d3c41cc3b8c"
> -SRC_URI[sha256sum] = "826a288ee6d9c4ec1184e64e9566c09d3b73be8f4283c1898fa4332f1daf8dbf"
> +SRC_URI[md5sum] = "520afccc1d46f833d117a23fab76ed8f"
> +SRC_URI[sha256sum] = "e59fa932418603af4e046a96c8985812b05af8a73bfd9d7a386cd1b02c6ab687"
>
>   inherit pypi setuptools3
>
> --
> 2.17.1
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 2536 bytes --]

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

* Re: [oe] [meta-python][PATCH 2/5] python3-dill: Upgrade 0.3.2 -> 0.3.3
  2020-11-12 10:56 ` [meta-python][PATCH 2/5] python3-dill: Upgrade 0.3.2 -> 0.3.3 Leon Anavi
@ 2020-11-18 15:52   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-11-18 15:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2197 bytes --]


On 2020-11-12 5:56 a.m., Leon Anavi wrote:
> [Please note this e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 0.3.3:
>
> - Treat extension modules as built-in
> - Fix typo in README.md
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../recipes-devtools/python/python3-dill_0.3.2.bb     |  9 ---------
>   .../recipes-devtools/python/python3-dill_0.3.3.bb     | 11 +++++++++++
>   2 files changed, 11 insertions(+), 9 deletions(-)
>   delete mode 100644 meta-python/recipes-devtools/python/python3-dill_0.3.2.bb
>   create mode 100644 meta-python/recipes-devtools/python/python3-dill_0.3.3.bb
>
> diff --git a/meta-python/recipes-devtools/python/python3-dill_0.3.2.bb b/meta-python/recipes-devtools/python/python3-dill_0.3.2.bb
> deleted file mode 100644
> index b03e032669..0000000000
> --- a/meta-python/recipes-devtools/python/python3-dill_0.3.2.bb
> +++ /dev/null
> @@ -1,9 +0,0 @@
> -inherit pypi setuptools3
> -
> -SUMMARY = "Serialize all of python"
> -LICENSE = "BSD"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=90fee9f98d11d59df3f8aa813ff9a3de"
> -
> -SRC_URI = "https://files.pythonhosted.org/packages/e2/96/518a8ea959a734b70d2e95fef98bcbfdc7adad1c1e5f5dd9148c835205a5/dill-${PV}.zip"
> -SRC_URI[md5sum] = "543607e0a419f154dca65265e87e4812"
> -SRC_URI[sha256sum] = "6e12da0d8e49c220e8d6e97ee8882002e624f1160289ce85ec2cc0a5246b3a2e"
> diff --git a/meta-python/recipes-devtools/python/python3-dill_0.3.3.bb b/meta-python/recipes-devtools/python/python3-dill_0.3.3.bb
> new file mode 100644
> index 0000000000..bf26ba30b5
> --- /dev/null
> +++ b/meta-python/recipes-devtools/python/python3-dill_0.3.3.bb
> @@ -0,0 +1,11 @@
> +SUMMARY = "Serialize all of python"
> +HOMEPAGE = "https://pypi.org/project/dill/"
> +LICENSE = "BSD"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=90fee9f98d11d59df3f8aa813ff9a3de"
> +
> +SRC_URI[md5sum] = "99c878e2e4e924f3234c0efcbcff6abf"
> +SRC_URI[sha256sum] = "efb7f6cb65dba7087c1e111bb5390291ba3616741f96840bfc75792a1a9b5ded"
> +
> +inherit pypi setuptools3
> +
> +PYPI_PACKAGE_EXT = "zip"
> --
> 2.17.1
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 3459 bytes --]

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

* Re: [oe] [meta-python][PATCH 3/5] python3-colorlog: Upgrade 4.4.0 -> 4.6.2
  2020-11-12 10:56 ` [meta-python][PATCH 3/5] python3-colorlog: Upgrade 4.4.0 -> 4.6.2 Leon Anavi
@ 2020-11-18 15:52   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-11-18 15:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 1587 bytes --]


On 2020-11-12 5:56 a.m., Leon Anavi wrote:
> [Please note this e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 4.6.2:
>
> - Include tests using MANIFEST.in instead of setup.py
> - Switch to GitHub Actions
> - Don't publish to test pypi - we'd have to bump the version
>    every commit
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-colorlog_4.4.0.bb => python3-colorlog_4.6.2.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-colorlog_4.4.0.bb => python3-colorlog_4.6.2.bb} (65%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-colorlog_4.4.0.bb b/meta-python/recipes-devtools/python/python3-colorlog_4.6.2.bb
> similarity index 65%
> rename from meta-python/recipes-devtools/python/python3-colorlog_4.4.0.bb
> rename to meta-python/recipes-devtools/python/python3-colorlog_4.6.2.bb
> index 4a40ef38cf..e98d276f06 100644
> --- a/meta-python/recipes-devtools/python/python3-colorlog_4.4.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-colorlog_4.6.2.bb
> @@ -7,5 +7,5 @@ inherit pypi setuptools3
>
>   PYPI_PACKAGE = "colorlog"
>
> -SRC_URI[md5sum] = "0997566a87c6fdec0baa88055adc06c3"
> -SRC_URI[sha256sum] = "0272c537469ab1e63b9915535874d15b671963c9325db0c4891a2aeff97ce3d1"
> +SRC_URI[md5sum] = "72441753be8ec437af9e5bb89db344e7"
> +SRC_URI[sha256sum] = "54e5f153419c22afc283c130c4201db19a3dbd83221a0f4657d5ee66234a2ea4"
> --
> 2.17.1
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 2378 bytes --]

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

* Re: [oe] [meta-python][PATCH 4/5] python3-pandas: Upgrade 1.1.3 -> 1.1.4
  2020-11-12 10:56 ` [meta-python][PATCH 4/5] python3-pandas: Upgrade 1.1.3 -> 1.1.4 Leon Anavi
@ 2020-11-18 15:52   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-11-18 15:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 4039 bytes --]


On 2020-11-12 5:56 a.m., Leon Anavi wrote:
> [Please note this e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 1.1.4:
>
> - Fixed regression in read_csv() raising a ValueError when names
>    was of type dict_keys
> - Fixed regression in read_csv() with more than 1M rows and
>    specifying a index_col argument
> - Fixed regression where attempting to mutate a DateOffset object
>    would no longer raise an AttributeError
> - Fixed regression where DataFrame.agg() would fail with TypeError
>    when passed positional arguments to be passed on to the
>    aggregation function
> - Fixed regression in RollingGroupby with sort=False not being
>    respected
> - Fixed regression in Series.astype() converting None to "nan"
>    when casting to string
> - Fixed regression in Series.rank() method failing for read-only
>    data
> - Fixed regression in RollingGroupby causing a segmentation fault
>    with Index of dtype object
> - Fixed regression in DataFrame.resample(...).apply(...)() raised
>    AttributeError when input was a DataFrame and only a Series was
>    evaluated
> - Fixed regression in DataFrame.groupby(..).std() with nullable
>    integer dtype
> - Fixed regression in PeriodDtype comparing both equal and unequal
>    to its string representation
> - Fixed regression where slicing DatetimeIndex raised AssertionError
>    on irregular time series with pd.NaT or on unsorted indices
> - Fixed regression in certain offsets (pd.offsets.Day() and below)
>    no longer being hashable
> - Fixed regression in StataReader which required chunksize to be
>    manually set when using an iterator to read a dataset
> - Fixed regression in setitem with DataFrame.iloc() which raised
>    error when trying to set a value while filtering with a boolean
>    list
> - Fixed regression in setitem with a Series getting aligned before
>    setting the values
> - Fixed regression in MultiIndex.is_monotonic_increasing returning
>    wrong results with NaN in at least one of the levels
> - Fixed regression in inplace arithmetic operation on a Series not
>    updating the parent DataFrame
> - Fixed bug causing groupby(...).sum() and similar to not preserve
>    metadata
> - Fixed bug in Series.isin() and DataFrame.isin() raising a
>    ValueError when the target was read-only
> - Fixed bug in GroupBy.fillna() that introduced a performance
>    regression after 1.0.5
> - Fixed bug in DataFrame.info() was raising a KeyError when the
>    DataFrame has integer column names
> - Fixed bug in DataFrameGroupby.apply() would drop a
>    CategoricalIndex when grouped on
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pandas_1.1.3.bb => python3-pandas_1.1.4.bb}      | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pandas_1.1.3.bb => python3-pandas_1.1.4.bb} (83%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb b/meta-python/recipes-devtools/python/python3-pandas_1.1.4.bb
> similarity index 83%
> rename from meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb
> rename to meta-python/recipes-devtools/python/python3-pandas_1.1.4.bb
> index da1ffd0b6d..78730b46af 100644
> --- a/meta-python/recipes-devtools/python/python3-pandas_1.1.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-pandas_1.1.4.bb
> @@ -6,8 +6,8 @@ HOMEPAGE = "http://pandas.pydata.org/"
>   LICENSE = "BSD-3-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=c2a8f987b2ce77c368c6b3e1b5b10774"
>
> -SRC_URI[md5sum] = "f10372d83a1c55cae217e8c05bf9bc5d"
> -SRC_URI[sha256sum] = "babbeda2f83b0686c9ad38d93b10516e68cdcd5771007eb80a763e98aaf44613"
> +SRC_URI[md5sum] = "594e6a429f297c77470e37d3510cccbb"
> +SRC_URI[sha256sum] = "a979d0404b135c63954dea79e6246c45dd45371a88631cdbb4877d844e6de3b6"
>
>   inherit pypi setuptools3
>
> --
> 2.17.1
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 4904 bytes --]

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

* Re: [oe] [meta-python][PATCH 5/5] python3-attrs: 20.2.0 -> 20.3.0
  2020-11-12 10:56 ` [meta-python][PATCH 5/5] python3-attrs: 20.2.0 -> 20.3.0 Leon Anavi
@ 2020-11-18 15:52   ` Trevor Gamblin
  0 siblings, 0 replies; 10+ messages in thread
From: Trevor Gamblin @ 2020-11-18 15:52 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

[-- Attachment #1: Type: text/plain, Size: 2271 bytes --]


On 2020-11-12 5:56 a.m., Leon Anavi wrote:
> [Please note this e-mail is from an EXTERNAL e-mail address]
>
> Upgrade to release 20.3.0:
>
> - attr.define(), attr.frozen(), attr.mutable(), and attr.field()
>    remain provisional.
> - attr.s() now has a field_transformer hook that is called for all
>    Attributes and returns a (modified or updated) list of Attribute
>    instances. attr.asdict() has a value_serializer hook that can
>    change the way values are converted. Both hooks are meant to
>    help with data (de-)serialization workflows.
> - kw_only=True now works on Python 2.
> - raise from now works on frozen classes on PyPy.
> - attr.asdict() and attr.astuple() now treat frozensets like sets
>    with regards to the retain_collection_types argument.
> - The type stubs for attr.s() and attr.make_class() are not
>    missing the collect_by_mro argument anymore.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-attrs_20.2.0.bb => python3-attrs_20.3.0.bb}      | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-attrs_20.2.0.bb => python3-attrs_20.3.0.bb} (74%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-attrs_20.2.0.bb b/meta-python/recipes-devtools/python/python3-attrs_20.3.0.bb
> similarity index 74%
> rename from meta-python/recipes-devtools/python/python3-attrs_20.2.0.bb
> rename to meta-python/recipes-devtools/python/python3-attrs_20.3.0.bb
> index c2a5b90515..55cfda7180 100644
> --- a/meta-python/recipes-devtools/python/python3-attrs_20.2.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-attrs_20.3.0.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "http://www.attrs.org/"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=d4ab25949a73fe7d4fdee93bcbdbf8ff"
>
> -SRC_URI[sha256sum] = "26b54ddbbb9ee1d34d5d3668dd37d6cf74990ab23c828c2888dccdceee395594"
> -SRC_URI[md5sum] = "7be95e1b35e9385d71a0017a48217efc"
> +SRC_URI[sha256sum] = "832aa3cde19744e49938b91fea06d69ecb9e649c93ba974535d08ad92164f700"
> +SRC_URI[md5sum] = "4fe38f89297b2b446d83190fce189f29"
>
>   inherit pypi setuptools3
>
> --
> 2.17.1
>
>
> 
>

[-- Attachment #2: Type: text/html, Size: 3213 bytes --]

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

end of thread, other threads:[~2020-11-18 15:52 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-12 10:56 [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.11 -> 1.4.0 Leon Anavi
2020-11-12 10:56 ` [meta-python][PATCH 2/5] python3-dill: Upgrade 0.3.2 -> 0.3.3 Leon Anavi
2020-11-18 15:52   ` [oe] " Trevor Gamblin
2020-11-12 10:56 ` [meta-python][PATCH 3/5] python3-colorlog: Upgrade 4.4.0 -> 4.6.2 Leon Anavi
2020-11-18 15:52   ` [oe] " Trevor Gamblin
2020-11-12 10:56 ` [meta-python][PATCH 4/5] python3-pandas: Upgrade 1.1.3 -> 1.1.4 Leon Anavi
2020-11-18 15:52   ` [oe] " Trevor Gamblin
2020-11-12 10:56 ` [meta-python][PATCH 5/5] python3-attrs: 20.2.0 -> 20.3.0 Leon Anavi
2020-11-18 15:52   ` [oe] " Trevor Gamblin
2020-11-18 15:51 ` [oe] [meta-python][PATCH 1/5] python3-cmd2: Upgrade 1.3.11 -> 1.4.0 Trevor Gamblin

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.