All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file
@ 2020-06-25  9:07 Leon Anavi
  2020-06-25  9:07 ` [meta-python][PATCH 02/12] python3-jsonpatch: Upgrade 1.25 -> 1.26 Leon Anavi
                   ` (11 more replies)
  0 siblings, 12 replies; 24+ messages in thread
From: Leon Anavi @ 2020-06-25  9:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Consolidate inc and bb files into a single bb file.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../recipes-connectivity/python-pytun/python3-pytun_2.3.0.bb    | 2 --
 .../python-pytun.inc => python3-pytun/python3-pytun_2.3.0.bb}   | 2 +-
 2 files changed, 1 insertion(+), 3 deletions(-)
 delete mode 100644 meta-python/recipes-connectivity/python-pytun/python3-pytun_2.3.0.bb
 rename meta-python/recipes-connectivity/{python-pytun/python-pytun.inc => python3-pytun/python3-pytun_2.3.0.bb} (92%)

diff --git a/meta-python/recipes-connectivity/python-pytun/python3-pytun_2.3.0.bb b/meta-python/recipes-connectivity/python-pytun/python3-pytun_2.3.0.bb
deleted file mode 100644
index 938d9d739..000000000
--- a/meta-python/recipes-connectivity/python-pytun/python3-pytun_2.3.0.bb
+++ /dev/null
@@ -1,2 +0,0 @@
-require python-pytun.inc
-inherit setuptools3
diff --git a/meta-python/recipes-connectivity/python-pytun/python-pytun.inc b/meta-python/recipes-connectivity/python3-pytun/python3-pytun_2.3.0.bb
similarity index 92%
rename from meta-python/recipes-connectivity/python-pytun/python-pytun.inc
rename to meta-python/recipes-connectivity/python3-pytun/python3-pytun_2.3.0.bb
index 3991a830f..bc11d705f 100644
--- a/meta-python/recipes-connectivity/python-pytun/python-pytun.inc
+++ b/meta-python/recipes-connectivity/python3-pytun/python3-pytun_2.3.0.bb
@@ -7,4 +7,4 @@ SRC_URI[sha256sum] = "5ead86b3391acef239535ebcabeb04d2cdc6b40ab14580d28c6da193c2
 
 PYPI_PACKAGE = "python-pytun"
 
-inherit pypi 
+inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 02/12] python3-jsonpatch: Upgrade 1.25 -> 1.26
  2020-06-25  9:07 [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Leon Anavi
@ 2020-06-25  9:07 ` Leon Anavi
  2020-06-26 15:00   ` [oe] " Trevor Gamblin
  2020-06-25  9:07 ` [meta-python][PATCH 03/12] python3-socketio: Upgrade 4.5.1 -> 4.6.0 Leon Anavi
                   ` (10 subsequent siblings)
  11 siblings, 1 reply; 24+ messages in thread
From: Leon Anavi @ 2020-06-25  9:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.26:

- Optimize exception message
- Optimize error handling
- Fixed some typos and wording

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

diff --git a/meta-python/recipes-devtools/python/python3-jsonpatch_1.25.bb b/meta-python/recipes-devtools/python/python3-jsonpatch_1.26.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python3-jsonpatch_1.25.bb
rename to meta-python/recipes-devtools/python/python3-jsonpatch_1.26.bb
index 8ec21ff11..b1217cfac 100644
--- a/meta-python/recipes-devtools/python/python3-jsonpatch_1.25.bb
+++ b/meta-python/recipes-devtools/python/python3-jsonpatch_1.26.bb
@@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=32b15c843b7a329130f4e266a281ebb3"
 
 inherit pypi setuptools3
 
-SRC_URI[md5sum] = "fcc546892414bef2f7f89f0e2a618a9e"
-SRC_URI[sha256sum] = "ddc0f7628b8bfdd62e3cbfbc24ca6671b0b6265b50d186c2cf3659dc0f78fd6a"
+SRC_URI[md5sum] = "3aa7e75ad472c51a6de0123137dbfdf2"
+SRC_URI[sha256sum] = "e45df18b0ab7df1925f20671bbc3f6bd0b4b556fb4b9c5d97684b0a7eac01744"
 
 RDEPENDS_${PN} += "${PYTHON_PN}-json ${PYTHON_PN}-jsonpointer ${PYTHON_PN}-netclient ${PYTHON_PN}-stringold"
-- 
2.17.1


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

* [meta-python][PATCH 03/12] python3-socketio: Upgrade 4.5.1 -> 4.6.0
  2020-06-25  9:07 [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Leon Anavi
  2020-06-25  9:07 ` [meta-python][PATCH 02/12] python3-jsonpatch: Upgrade 1.25 -> 1.26 Leon Anavi
@ 2020-06-25  9:07 ` Leon Anavi
  2020-06-26 15:00   ` [oe] " Trevor Gamblin
  2020-06-25  9:07 ` [meta-python][PATCH 04/12] python3-twine: Upgrade 3.1.1 -> 3.2.0 Leon Anavi
                   ` (9 subsequent siblings)
  11 siblings, 1 reply; 24+ messages in thread
From: Leon Anavi @ 2020-06-25  9:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 4.6.0:

- Improved handling of rejected connections
- Fix multi-namespace disconnect logic
- AsyncPubSubManager does not await for can_disconnect()
- Require a recipient in call() function in the server
- ASGI startup and shutdown lifespan handlers
- Remove references to Python 2.7 in the documentation
- Fix server example in docstring
- Fix documentation typo

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

diff --git a/meta-python/recipes-devtools/python/python3-socketio_4.5.1.bb b/meta-python/recipes-devtools/python/python3-socketio_4.6.0.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-socketio_4.5.1.bb
rename to meta-python/recipes-devtools/python/python3-socketio_4.6.0.bb
index 54ecbbaa0..7d96398e9 100644
--- a/meta-python/recipes-devtools/python/python3-socketio_4.5.1.bb
+++ b/meta-python/recipes-devtools/python/python3-socketio_4.6.0.bb
@@ -9,8 +9,8 @@ inherit pypi setuptools3
 
 PYPI_PACKAGE = "python-socketio"
 
-SRC_URI[md5sum] = "3dbd0a2ebcf34632f67327b665cbb951"
-SRC_URI[sha256sum] = "149b98c33f8c3d09273fb4ebeb83781e4dc9411b56b27d9f058bec1bd1ed74b7"
+SRC_URI[md5sum] = "44bb7854234e144655ef9c34b0165704"
+SRC_URI[sha256sum] = "358d8fbbc029c4538ea25bcaa283e47f375be0017fcba829de8a3a731c9df25a"
 
 PACKAGECONFIG ?= "asyncio_client client"
 PACKAGECONFIG[asyncio_client] = ",,,${PYTHON_PN}-aiohttp ${PYTHON_PN}-websockets"
-- 
2.17.1


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

* [meta-python][PATCH 04/12] python3-twine: Upgrade 3.1.1 -> 3.2.0
  2020-06-25  9:07 [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Leon Anavi
  2020-06-25  9:07 ` [meta-python][PATCH 02/12] python3-jsonpatch: Upgrade 1.25 -> 1.26 Leon Anavi
  2020-06-25  9:07 ` [meta-python][PATCH 03/12] python3-socketio: Upgrade 4.5.1 -> 4.6.0 Leon Anavi
@ 2020-06-25  9:07 ` Leon Anavi
  2020-06-26 15:01   ` [oe] " Trevor Gamblin
  2020-06-25  9:07 ` [meta-python][PATCH 05/12] python3-pyexpect: Upgrade 1.0.19 -> 1.0.20 Leon Anavi
                   ` (8 subsequent siblings)
  11 siblings, 1 reply; 24+ messages in thread
From: Leon Anavi @ 2020-06-25  9:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.2.0:

- Improve display of HTTP errors during upload
- Use red text when printing errors on the command line
- Print packages and signatures to be uploaded when using
  --verbose option
- Update URL to .pypirc specification
- Require repository URL scheme to be http or https
- Don't raise an exception when Python version can't be parsed
  from filename
- Fix inaccurate retry message during upload
- Clarify error messages for archive format
- Add type annotations, checked with mypy, with PEP 561 support
  for users of Twine's API

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

diff --git a/meta-python/recipes-devtools/python/python3-twine_3.1.1.bb b/meta-python/recipes-devtools/python/python3-twine_3.2.0.bb
similarity index 68%
rename from meta-python/recipes-devtools/python/python3-twine_3.1.1.bb
rename to meta-python/recipes-devtools/python/python3-twine_3.2.0.bb
index 31b55302a..34309585f 100644
--- a/meta-python/recipes-devtools/python/python3-twine_3.1.1.bb
+++ b/meta-python/recipes-devtools/python/python3-twine_3.2.0.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://twine.readthedocs.io/"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a3d1106b253a8d50dd82a4202a045b4c"
 
-SRC_URI[md5sum] = "faf033a3458de37df6cdecceb6da2c2b"
-SRC_URI[sha256sum] = "d561a5e511f70275e5a485a6275ff61851c16ffcb3a95a602189161112d9f160"
+SRC_URI[md5sum] = "41ce5c8aad253ef4b43b19c76997e2f2"
+SRC_URI[sha256sum] = "34352fd52ec3b9d29837e6072d5a2a7c6fe4290e97bba46bb8d478b5c598f7ab"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 05/12] python3-pyexpect: Upgrade 1.0.19 -> 1.0.20
  2020-06-25  9:07 [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Leon Anavi
                   ` (2 preceding siblings ...)
  2020-06-25  9:07 ` [meta-python][PATCH 04/12] python3-twine: Upgrade 3.1.1 -> 3.2.0 Leon Anavi
@ 2020-06-25  9:07 ` Leon Anavi
  2020-06-26 15:01   ` [oe] " Trevor Gamblin
  2020-06-25  9:07 ` [meta-python][PATCH 06/12] python3-pyjks: Upgrade 19.0.0 -> 20.0.0 Leon Anavi
                   ` (7 subsequent siblings)
  11 siblings, 1 reply; 24+ messages in thread
From: Leon Anavi @ 2020-06-25  9:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.0.20:

- Support expectations on types that return different types than
  bool on comparison.
- Better documentation intro using the feedback I got for my talk
  at berlin.python.pizza
- Fix upload command and add some todos

LIC_FILES_CHKSUM changed due to the recent modifications of
README.md. The license remains the same.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...ython3-pyexpect_1.0.19.bb => python3-pyexpect_1.0.20.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pyexpect_1.0.19.bb => python3-pyexpect_1.0.20.bb} (52%)

diff --git a/meta-python/recipes-devtools/python/python3-pyexpect_1.0.19.bb b/meta-python/recipes-devtools/python/python3-pyexpect_1.0.20.bb
similarity index 52%
rename from meta-python/recipes-devtools/python/python3-pyexpect_1.0.19.bb
rename to meta-python/recipes-devtools/python/python3-pyexpect_1.0.20.bb
index ea3c018af..e09fec01d 100644
--- a/meta-python/recipes-devtools/python/python3-pyexpect_1.0.19.bb
+++ b/meta-python/recipes-devtools/python/python3-pyexpect_1.0.20.bb
@@ -3,9 +3,9 @@ DESCRIPTION = "Minimal but very flexible implementation of the expect pattern"
 SECTION = "devel/python"
 HOMEPAGE = " https://bitbucket.org/dwt/pyexpect"
 LICENSE = "ISC"
-LIC_FILES_CHKSUM = "file://README.md;md5=500b884e9dcd5f677a53cbbee8ace939"
+LIC_FILES_CHKSUM = "file://README.md;md5=a6aa1e7097aca5955f9a2e1c8b0ce158"
 
 inherit pypi setuptools3
 
-SRC_URI[md5sum] = "dc744289858001925c75d21e26f1260f"
-SRC_URI[sha256sum] = "bff4654b113dac6c2231e486e11dcb23281ddc0742a5404467303fe7638829ef"
+SRC_URI[md5sum] = "7ebc843f015b54d849ac7632eda74e9b"
+SRC_URI[sha256sum] = "acaaa6f96de315dc99cac3da810156bf3829d1eb5c49180f00a4fdde82eabc76"
-- 
2.17.1


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

* [meta-python][PATCH 06/12] python3-pyjks: Upgrade 19.0.0 -> 20.0.0
  2020-06-25  9:07 [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Leon Anavi
                   ` (3 preceding siblings ...)
  2020-06-25  9:07 ` [meta-python][PATCH 05/12] python3-pyexpect: Upgrade 1.0.19 -> 1.0.20 Leon Anavi
@ 2020-06-25  9:07 ` Leon Anavi
  2020-06-26 15:01   ` [oe] " Trevor Gamblin
  2020-06-25  9:07 ` [meta-python][PATCH 07/12] python3-ruamel-yaml: Upgrade 0.16.5 0> 0.16.10 Leon Anavi
                   ` (6 subsequent siblings)
  11 siblings, 1 reply; 24+ messages in thread
From: Leon Anavi @ 2020-06-25  9:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 20.0.0:

- Mirrors keytool support for keystores with empty passphrases
- Add Python 3.7 and 3.8 to support matrix
- Docs and examples fixes

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

diff --git a/meta-python/recipes-devtools/python/python3-pyjks_19.0.0.bb b/meta-python/recipes-devtools/python/python3-pyjks_20.0.0.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-pyjks_19.0.0.bb
rename to meta-python/recipes-devtools/python/python3-pyjks_20.0.0.bb
index ee2f3075c..520899b8e 100644
--- a/meta-python/recipes-devtools/python/python3-pyjks_19.0.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pyjks_20.0.0.bb
@@ -6,8 +6,8 @@ HOMEPAGE = "http://github.com/kurtbrose/pyjks"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=9694d6cc724caf7f7386be88a4a81958"
 
-SRC_URI[md5sum] = "b6e8f3b91be355d15e3ba99de2cccf9b"
-SRC_URI[sha256sum] = "9ce5b40289bcdffcd6a8e7118b333ba8ba2ec4c9ebc5e324885cc8a69767011a"
+SRC_URI[md5sum] = "1a6bce95484f1f62f8ff59755972c632"
+SRC_URI[sha256sum] = "0378cec15fb11b2ed27ba54dad9fd987d48e6f62f49fcff138f5f7a8b312b044"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 07/12] python3-ruamel-yaml: Upgrade 0.16.5 0> 0.16.10
  2020-06-25  9:07 [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Leon Anavi
                   ` (4 preceding siblings ...)
  2020-06-25  9:07 ` [meta-python][PATCH 06/12] python3-pyjks: Upgrade 19.0.0 -> 20.0.0 Leon Anavi
@ 2020-06-25  9:07 ` Leon Anavi
  2020-06-26 15:01   ` [oe] " Trevor Gamblin
  2020-06-25  9:07 ` [meta-python][PATCH 08/12] python3-pandas: Upgrade 1.0.3 -> 1.0.5 Leon Anavi
                   ` (5 subsequent siblings)
  11 siblings, 1 reply; 24+ messages in thread
From: Leon Anavi @ 2020-06-25  9:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.16.10:

- updated image references in README to sourceforge
- update requirements so that ruamel.yaml.clib is installed for
  3.8, as it has become available
- fix typchecking issue on TaggedScalar
- fix error in dumping literal scalar in sequence with comments
  before element
- fix empty string mapping key roundtripping with preservation
  of quotes as `? ''`
- fix incorrect state setting in class constructor
- adjust deprecation warning test for Hashable, as that no
  longer warns

The year in LICENSE has been updated and LIC_FILES_CHKSUM changed.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...ruamel-yaml_0.16.5.bb => python3-ruamel-yaml_0.16.10.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-ruamel-yaml_0.16.5.bb => python3-ruamel-yaml_0.16.10.bb} (57%)

diff --git a/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.5.bb b/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.10.bb
similarity index 57%
rename from meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.5.bb
rename to meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.10.bb
index ba095648f..076721a09 100644
--- a/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.5.bb
+++ b/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.10.bb
@@ -2,14 +2,14 @@ SUMMARY = "YAML parser/emitter that supports roundtrip preservation of comments,
 AUTHOR = "Anthon van der Neut"
 
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=caf8bd842440b537c044e131785a4666"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=60afc0a1bb0501c0c555cabe78bba022"
 
 PYPI_PACKAGE = "ruamel.yaml"
 
 inherit pypi setuptools3
 
-SRC_URI[md5sum] = "7d5a5b0a7621a1247b081cc8e4978354"
-SRC_URI[sha256sum] = "412a6f5cfdc0525dee6a27c08f5415c7fd832a7afcb7a0ed7319628aed23d408"
+SRC_URI[md5sum] = "02774e7ed3273b3d8eee6c08326b91c4"
+SRC_URI[sha256sum] = "099c644a778bf72ffa00524f78dd0b6476bca94a1da344130f4bf3381ce5b954"
 
 do_install_prepend() {
     export RUAMEL_NO_PIP_INSTALL_CHECK=1
-- 
2.17.1


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

* [meta-python][PATCH 08/12] python3-pandas: Upgrade 1.0.3 -> 1.0.5
  2020-06-25  9:07 [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Leon Anavi
                   ` (5 preceding siblings ...)
  2020-06-25  9:07 ` [meta-python][PATCH 07/12] python3-ruamel-yaml: Upgrade 0.16.5 0> 0.16.10 Leon Anavi
@ 2020-06-25  9:07 ` Leon Anavi
  2020-06-26 15:01   ` [oe] " Trevor Gamblin
  2020-06-25  9:07 ` [meta-python][PATCH 09/12] python3-matplotlib: Upgrade 3.2.1 -> 3.2.2 Leon Anavi
                   ` (4 subsequent siblings)
  11 siblings, 1 reply; 24+ messages in thread
From: Leon Anavi @ 2020-06-25  9:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.0.5:

- Fix regression in read_parquet() when reading from file-like
  objects.
- Fix regression in reading from public S3 buckets.
- Fixed regression in replace() raising an AssertionError when
  replacing values in an extension dtype with values of a
  different dtype

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

diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.0.3.bb b/meta-python/recipes-devtools/python/python3-pandas_1.0.5.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-pandas_1.0.3.bb
rename to meta-python/recipes-devtools/python/python3-pandas_1.0.5.bb
index 099e035e1..d8db4cef3 100644
--- a/meta-python/recipes-devtools/python/python3-pandas_1.0.3.bb
+++ b/meta-python/recipes-devtools/python/python3-pandas_1.0.5.bb
@@ -6,8 +6,8 @@ HOMEPAGE = "http://pandas.pydata.org/"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=ee0470f2de336c370a71c2f8d5e81c11"
 
-SRC_URI[md5sum] = "a3ea90326c5b55944d369bef87740a72"
-SRC_URI[sha256sum] = "32f42e322fb903d0e189a4c10b75ba70d90958cc4f66a1781ed027f1a1d14586"
+SRC_URI[md5sum] = "5183db713194e6fbc96c45f30a0d1311"
+SRC_URI[sha256sum] = "69c5d920a0b2a9838e677f78f4dde506b95ea8e4d30da25859db6469ded84fa8"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 09/12] python3-matplotlib: Upgrade 3.2.1 -> 3.2.2
  2020-06-25  9:07 [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Leon Anavi
                   ` (6 preceding siblings ...)
  2020-06-25  9:07 ` [meta-python][PATCH 08/12] python3-pandas: Upgrade 1.0.3 -> 1.0.5 Leon Anavi
@ 2020-06-25  9:07 ` Leon Anavi
  2020-06-26 15:02   ` [oe] " Trevor Gamblin
  2020-06-25  9:07 ` [meta-python][PATCH 10/12] python3-coverage: Upgrade 5.0.2 -> 5.1 Leon Anavi
                   ` (3 subsequent siblings)
  11 siblings, 1 reply; 24+ messages in thread
From: Leon Anavi @ 2020-06-25  9:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.2.2:

- Unit converters recognize subclasses
- imsave accepts metadata and PIL options
- cbook.normalize_kwargs
- FontProperties accepts os.PathLike
- Gouraud-shading alpha channel in PDF backend
- Kerning adjustments now use correct values
- bar3d lightsource shading
- Shifting errorbars
- Improvements in Logit scale ticker and formatter
- rcParams for axes title location and color
- 3-digit and 4-digit hex colors

The line in setup.py for determining the license has changed.
The license remains the same.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...hon3-matplotlib_3.2.1.bb => python3-matplotlib_3.2.2.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-matplotlib_3.2.1.bb => python3-matplotlib_3.2.2.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-matplotlib_3.2.1.bb b/meta-python/recipes-devtools/python/python3-matplotlib_3.2.2.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-matplotlib_3.2.1.bb
rename to meta-python/recipes-devtools/python/python3-matplotlib_3.2.2.bb
index f6d8c53d0..b32177d9b 100644
--- a/meta-python/recipes-devtools/python/python3-matplotlib_3.2.1.bb
+++ b/meta-python/recipes-devtools/python/python3-matplotlib_3.2.2.bb
@@ -7,7 +7,7 @@ HOMEPAGE = "https://github.com/matplotlib/matplotlib"
 SECTION = "devel/python"
 LICENSE = "PSF"
 LIC_FILES_CHKSUM = "\
-    file://setup.py;beginline=250;endline=250;md5=2a114620e4e6843aa7568d5902501753 \
+    file://setup.py;beginline=253;endline=253;md5=2a114620e4e6843aa7568d5902501753 \
     file://LICENSE/LICENSE;md5=afec61498aa5f0c45936687da9a53d74 \
 "
 DEPENDS = "\
@@ -18,8 +18,8 @@ DEPENDS = "\
     python3-pytz-native \
 "
 
-SRC_URI[md5sum] = "6c018a644a88120886cc7211f7c826f0"
-SRC_URI[sha256sum] = "ffe2f9cdcea1086fc414e82f42271ecf1976700b8edd16ca9d376189c6d93aee"
+SRC_URI[md5sum] = "b60cd68f792a30173d825e16482aedd8"
+SRC_URI[sha256sum] = "3d77a6630d093d74cbbfebaa0571d00790966be1ed204e4a8239f5cbd6835c5d"
 
 inherit pypi setuptools3 pkgconfig
 
-- 
2.17.1


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

* [meta-python][PATCH 10/12] python3-coverage: Upgrade 5.0.2 -> 5.1
  2020-06-25  9:07 [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Leon Anavi
                   ` (7 preceding siblings ...)
  2020-06-25  9:07 ` [meta-python][PATCH 09/12] python3-matplotlib: Upgrade 3.2.1 -> 3.2.2 Leon Anavi
@ 2020-06-25  9:07 ` Leon Anavi
  2020-06-26 15:02   ` [oe] " Trevor Gamblin
  2020-06-25  9:07 ` [meta-python][PATCH 11/12] python3-coloredlogs: Upgrade 10.0 -> 14.0 Leon Anavi
                   ` (2 subsequent siblings)
  11 siblings, 1 reply; 24+ messages in thread
From: Leon Anavi @ 2020-06-25  9:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 5.1:

- The JSON report now includes counts of covered and missing
  branches.
- On Python 3.8, try-finally-return reported wrong branch coverage
  with decorated async functions (issue 964). This is now fixed.
- The :meth:`~coverage.Coverage.get_option` and
  :meth:`~coverage.Coverage.set_option` methods can now manipulate
  the [paths] configuration setting.

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

diff --git a/meta-python/recipes-devtools/python/python3-coverage_5.0.2.bb b/meta-python/recipes-devtools/python/python3-coverage_5.1.bb
similarity index 61%
rename from meta-python/recipes-devtools/python/python3-coverage_5.0.2.bb
rename to meta-python/recipes-devtools/python/python3-coverage_5.1.bb
index 9407278e9..7265d2c97 100644
--- a/meta-python/recipes-devtools/python/python3-coverage_5.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-coverage_5.1.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://coverage.readthedocs.io"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93"
 
-SRC_URI[md5sum] = "876be562bc78deac6fc2a06ee4a6d551"
-SRC_URI[sha256sum] = "b251c7092cbb6d789d62dc9c9e7c4fb448c9138b51285c36aeb72462cad3600e"
+SRC_URI[md5sum] = "506e30fb011158abe5ce92f39866b271"
+SRC_URI[sha256sum] = "f90bfc4ad18450c80b024036eaf91e4a246ae287701aaa88eaebebf150868052"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 11/12] python3-coloredlogs: Upgrade 10.0 -> 14.0
  2020-06-25  9:07 [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Leon Anavi
                   ` (8 preceding siblings ...)
  2020-06-25  9:07 ` [meta-python][PATCH 10/12] python3-coverage: Upgrade 5.0.2 -> 5.1 Leon Anavi
@ 2020-06-25  9:07 ` Leon Anavi
  2020-06-26 15:02   ` [oe] " Trevor Gamblin
  2020-06-25  9:07 ` [meta-python][PATCH 12/12] python3-astroid: Upgrade 2.3.3 -> 2.4.2 Leon Anavi
  2020-06-26 15:00 ` [oe] [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Trevor Gamblin
  11 siblings, 1 reply; 24+ messages in thread
From: Leon Anavi @ 2020-06-25  9:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 14.0:

- Integrate native Windows 10 support for ANSI escape sequences
- Native support for ANSI escape sequences was added to Windows
  10 after its initial release
- Merged pull request #80 that drops support for Python 3.4
  which has gone end-of-life and now represents less than 1% of
  PyPI downloads.
- Improved compatibility with the Python standard library by
  changing the order of positional arguments received by the
  initializer of the ColoredFormatter class
- Add support for the %(username)s field and properly document
  supported custom fields.
- Consistently use console highlighting in documentation.
- Fix a broken link in the readme.

The year in LICENSE.txt has been updated.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...hon3-coloredlogs_10.0.bb => python3-coloredlogs_14.0.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-coloredlogs_10.0.bb => python3-coloredlogs_14.0.bb} (64%)

diff --git a/meta-python/recipes-devtools/python/python3-coloredlogs_10.0.bb b/meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb
similarity index 64%
rename from meta-python/recipes-devtools/python/python3-coloredlogs_10.0.bb
rename to meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb
index 88fac87c7..64f3008ee 100644
--- a/meta-python/recipes-devtools/python/python3-coloredlogs_10.0.bb
+++ b/meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb
@@ -2,10 +2,10 @@ DESCRIPTION = "Colored terminal output for Python's logging module"
 HOMEPAGE = "https://coloredlogs.readthedocs.io"
 SECTION = "devel/python"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=690da298a43805797a4fa7bbe180b3c6"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=764e737b117a38d773609885e8d04f0b"
 
-SRC_URI[md5sum] = "0a186966a1955fff8cf9489373e691d9"
-SRC_URI[sha256sum] = "b869a2dda3fa88154b9dd850e27828d8755bfab5a838a1c97fbc850c6e377c36"
+SRC_URI[md5sum] = "34cd8ef3f758b10c6f1482b2614a81f2"
+SRC_URI[sha256sum] = "a1fab193d2053aa6c0a97608c4342d031f1f93a3d1218432c59322441d31a505"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 12/12] python3-astroid: Upgrade 2.3.3 -> 2.4.2
  2020-06-25  9:07 [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Leon Anavi
                   ` (9 preceding siblings ...)
  2020-06-25  9:07 ` [meta-python][PATCH 11/12] python3-coloredlogs: Upgrade 10.0 -> 14.0 Leon Anavi
@ 2020-06-25  9:07 ` Leon Anavi
  2020-06-26 15:02   ` [oe] " Trevor Gamblin
  2020-06-26 15:00 ` [oe] [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Trevor Gamblin
  11 siblings, 1 reply; 24+ messages in thread
From: Leon Anavi @ 2020-06-25  9:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.4.2:

- `FunctionDef.is_generator` properly handles `yield` nodes in
  `While` tests
- Properly construct the arguments of infered property descriptors
- Handle the case where the raw builder fails to retrieve the
  ``__all__`` attribute
- Restructure the AST parsing heuristic to always pick the same
  module
- Do not crash with SyntaxError when parsing namedtuples with
  invalid label
- Expose a ast_from_string method in AstroidManager, which will
  accept source code as a string and return the corresponding
  astroid object
- Prevent a recursion error to happen when inferring the declared
  metaclass of a class

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

diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.3.3.bb b/meta-python/recipes-devtools/python/python3-astroid_2.4.2.bb
similarity index 84%
rename from meta-python/recipes-devtools/python/python3-astroid_2.3.3.bb
rename to meta-python/recipes-devtools/python/python3-astroid_2.4.2.bb
index dc1ce0eb4..677cec7ac 100644
--- a/meta-python/recipes-devtools/python/python3-astroid_2.3.3.bb
+++ b/meta-python/recipes-devtools/python/python3-astroid_2.4.2.bb
@@ -4,8 +4,8 @@ SECTION = "devel/python"
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
 
-SRC_URI[md5sum] = "5f3d73d82d1753b59bb49a6bc6046dee"
-SRC_URI[sha256sum] = "71ea07f44df9568a75d0f354c49143a4575d90645e9fead6dfb52c26a85ed13a"
+SRC_URI[md5sum] = "b54e1325995d3a9abd84bac91d4d5867"
+SRC_URI[sha256sum] = "2f4078c2a41bf377eea06d71c9d2ba4eb8f6b1af2135bec27bbbb7d8f12bb703"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file
  2020-06-25  9:07 [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Leon Anavi
                   ` (10 preceding siblings ...)
  2020-06-25  9:07 ` [meta-python][PATCH 12/12] python3-astroid: Upgrade 2.3.3 -> 2.4.2 Leon Anavi
@ 2020-06-26 15:00 ` Trevor Gamblin
  11 siblings, 0 replies; 24+ messages in thread
From: Trevor Gamblin @ 2020-06-26 15:00 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/25/20 5:07 AM, Leon Anavi wrote:
> Consolidate inc and bb files into a single bb file.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../recipes-connectivity/python-pytun/python3-pytun_2.3.0.bb    | 2 --
>   .../python-pytun.inc => python3-pytun/python3-pytun_2.3.0.bb}   | 2 +-
>   2 files changed, 1 insertion(+), 3 deletions(-)
>   delete mode 100644 meta-python/recipes-connectivity/python-pytun/python3-pytun_2.3.0.bb
>   rename meta-python/recipes-connectivity/{python-pytun/python-pytun.inc => python3-pytun/python3-pytun_2.3.0.bb} (92%)
>
> diff --git a/meta-python/recipes-connectivity/python-pytun/python3-pytun_2.3.0.bb b/meta-python/recipes-connectivity/python-pytun/python3-pytun_2.3.0.bb
> deleted file mode 100644
> index 938d9d739..000000000
> --- a/meta-python/recipes-connectivity/python-pytun/python3-pytun_2.3.0.bb
> +++ /dev/null
> @@ -1,2 +0,0 @@
> -require python-pytun.inc
> -inherit setuptools3
> diff --git a/meta-python/recipes-connectivity/python-pytun/python-pytun.inc b/meta-python/recipes-connectivity/python3-pytun/python3-pytun_2.3.0.bb
> similarity index 92%
> rename from meta-python/recipes-connectivity/python-pytun/python-pytun.inc
> rename to meta-python/recipes-connectivity/python3-pytun/python3-pytun_2.3.0.bb
> index 3991a830f..bc11d705f 100644
> --- a/meta-python/recipes-connectivity/python-pytun/python-pytun.inc
> +++ b/meta-python/recipes-connectivity/python3-pytun/python3-pytun_2.3.0.bb
> @@ -7,4 +7,4 @@ SRC_URI[sha256sum] = "5ead86b3391acef239535ebcabeb04d2cdc6b40ab14580d28c6da193c2
>   
>   PYPI_PACKAGE = "python-pytun"
>   
> -inherit pypi
> +inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 02/12] python3-jsonpatch: Upgrade 1.25 -> 1.26
  2020-06-25  9:07 ` [meta-python][PATCH 02/12] python3-jsonpatch: Upgrade 1.25 -> 1.26 Leon Anavi
@ 2020-06-26 15:00   ` Trevor Gamblin
  0 siblings, 0 replies; 24+ messages in thread
From: Trevor Gamblin @ 2020-06-26 15:00 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/25/20 5:07 AM, Leon Anavi wrote:
> Upgrade to release 1.26:
>
> - Optimize exception message
> - Optimize error handling
> - Fixed some typos and wording
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-jsonpatch_1.25.bb => python3-jsonpatch_1.26.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-jsonpatch_1.25.bb => python3-jsonpatch_1.26.bb} (71%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-jsonpatch_1.25.bb b/meta-python/recipes-devtools/python/python3-jsonpatch_1.26.bb
> similarity index 71%
> rename from meta-python/recipes-devtools/python/python3-jsonpatch_1.25.bb
> rename to meta-python/recipes-devtools/python/python3-jsonpatch_1.26.bb
> index 8ec21ff11..b1217cfac 100644
> --- a/meta-python/recipes-devtools/python/python3-jsonpatch_1.25.bb
> +++ b/meta-python/recipes-devtools/python/python3-jsonpatch_1.26.bb
> @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://COPYING;md5=32b15c843b7a329130f4e266a281ebb3"
>   
>   inherit pypi setuptools3
>   
> -SRC_URI[md5sum] = "fcc546892414bef2f7f89f0e2a618a9e"
> -SRC_URI[sha256sum] = "ddc0f7628b8bfdd62e3cbfbc24ca6671b0b6265b50d186c2cf3659dc0f78fd6a"
> +SRC_URI[md5sum] = "3aa7e75ad472c51a6de0123137dbfdf2"
> +SRC_URI[sha256sum] = "e45df18b0ab7df1925f20671bbc3f6bd0b4b556fb4b9c5d97684b0a7eac01744"
>   
>   RDEPENDS_${PN} += "${PYTHON_PN}-json ${PYTHON_PN}-jsonpointer ${PYTHON_PN}-netclient ${PYTHON_PN}-stringold"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 03/12] python3-socketio: Upgrade 4.5.1 -> 4.6.0
  2020-06-25  9:07 ` [meta-python][PATCH 03/12] python3-socketio: Upgrade 4.5.1 -> 4.6.0 Leon Anavi
@ 2020-06-26 15:00   ` Trevor Gamblin
  0 siblings, 0 replies; 24+ messages in thread
From: Trevor Gamblin @ 2020-06-26 15:00 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/25/20 5:07 AM, Leon Anavi wrote:
> Upgrade to release 4.6.0:
>
> - Improved handling of rejected connections
> - Fix multi-namespace disconnect logic
> - AsyncPubSubManager does not await for can_disconnect()
> - Require a recipient in call() function in the server
> - ASGI startup and shutdown lifespan handlers
> - Remove references to Python 2.7 in the documentation
> - Fix server example in docstring
> - Fix documentation typo
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-socketio_4.5.1.bb => python3-socketio_4.6.0.bb}  | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-socketio_4.5.1.bb => python3-socketio_4.6.0.bb} (83%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-socketio_4.5.1.bb b/meta-python/recipes-devtools/python/python3-socketio_4.6.0.bb
> similarity index 83%
> rename from meta-python/recipes-devtools/python/python3-socketio_4.5.1.bb
> rename to meta-python/recipes-devtools/python/python3-socketio_4.6.0.bb
> index 54ecbbaa0..7d96398e9 100644
> --- a/meta-python/recipes-devtools/python/python3-socketio_4.5.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-socketio_4.6.0.bb
> @@ -9,8 +9,8 @@ inherit pypi setuptools3
>   
>   PYPI_PACKAGE = "python-socketio"
>   
> -SRC_URI[md5sum] = "3dbd0a2ebcf34632f67327b665cbb951"
> -SRC_URI[sha256sum] = "149b98c33f8c3d09273fb4ebeb83781e4dc9411b56b27d9f058bec1bd1ed74b7"
> +SRC_URI[md5sum] = "44bb7854234e144655ef9c34b0165704"
> +SRC_URI[sha256sum] = "358d8fbbc029c4538ea25bcaa283e47f375be0017fcba829de8a3a731c9df25a"
>   
>   PACKAGECONFIG ?= "asyncio_client client"
>   PACKAGECONFIG[asyncio_client] = ",,,${PYTHON_PN}-aiohttp ${PYTHON_PN}-websockets"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 04/12] python3-twine: Upgrade 3.1.1 -> 3.2.0
  2020-06-25  9:07 ` [meta-python][PATCH 04/12] python3-twine: Upgrade 3.1.1 -> 3.2.0 Leon Anavi
@ 2020-06-26 15:01   ` Trevor Gamblin
  0 siblings, 0 replies; 24+ messages in thread
From: Trevor Gamblin @ 2020-06-26 15:01 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/25/20 5:07 AM, Leon Anavi wrote:
> Upgrade to release 3.2.0:
>
> - Improve display of HTTP errors during upload
> - Use red text when printing errors on the command line
> - Print packages and signatures to be uploaded when using
>    --verbose option
> - Update URL to .pypirc specification
> - Require repository URL scheme to be http or https
> - Don't raise an exception when Python version can't be parsed
>    from filename
> - Fix inaccurate retry message during upload
> - Clarify error messages for archive format
> - Add type annotations, checked with mypy, with PEP 561 support
>    for users of Twine's API
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-twine_3.1.1.bb => python3-twine_3.2.0.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-twine_3.1.1.bb => python3-twine_3.2.0.bb} (68%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-twine_3.1.1.bb b/meta-python/recipes-devtools/python/python3-twine_3.2.0.bb
> similarity index 68%
> rename from meta-python/recipes-devtools/python/python3-twine_3.1.1.bb
> rename to meta-python/recipes-devtools/python/python3-twine_3.2.0.bb
> index 31b55302a..34309585f 100644
> --- a/meta-python/recipes-devtools/python/python3-twine_3.1.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-twine_3.2.0.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://twine.readthedocs.io/"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=a3d1106b253a8d50dd82a4202a045b4c"
>   
> -SRC_URI[md5sum] = "faf033a3458de37df6cdecceb6da2c2b"
> -SRC_URI[sha256sum] = "d561a5e511f70275e5a485a6275ff61851c16ffcb3a95a602189161112d9f160"
> +SRC_URI[md5sum] = "41ce5c8aad253ef4b43b19c76997e2f2"
> +SRC_URI[sha256sum] = "34352fd52ec3b9d29837e6072d5a2a7c6fe4290e97bba46bb8d478b5c598f7ab"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 05/12] python3-pyexpect: Upgrade 1.0.19 -> 1.0.20
  2020-06-25  9:07 ` [meta-python][PATCH 05/12] python3-pyexpect: Upgrade 1.0.19 -> 1.0.20 Leon Anavi
@ 2020-06-26 15:01   ` Trevor Gamblin
  0 siblings, 0 replies; 24+ messages in thread
From: Trevor Gamblin @ 2020-06-26 15:01 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/25/20 5:07 AM, Leon Anavi wrote:
> Upgrade to release 1.0.20:
>
> - Support expectations on types that return different types than
>    bool on comparison.
> - Better documentation intro using the feedback I got for my talk
>    at berlin.python.pizza
> - Fix upload command and add some todos
>
> LIC_FILES_CHKSUM changed due to the recent modifications of
> README.md. The license remains the same.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...ython3-pyexpect_1.0.19.bb => python3-pyexpect_1.0.20.bb} | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pyexpect_1.0.19.bb => python3-pyexpect_1.0.20.bb} (52%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pyexpect_1.0.19.bb b/meta-python/recipes-devtools/python/python3-pyexpect_1.0.20.bb
> similarity index 52%
> rename from meta-python/recipes-devtools/python/python3-pyexpect_1.0.19.bb
> rename to meta-python/recipes-devtools/python/python3-pyexpect_1.0.20.bb
> index ea3c018af..e09fec01d 100644
> --- a/meta-python/recipes-devtools/python/python3-pyexpect_1.0.19.bb
> +++ b/meta-python/recipes-devtools/python/python3-pyexpect_1.0.20.bb
> @@ -3,9 +3,9 @@ DESCRIPTION = "Minimal but very flexible implementation of the expect pattern"
>   SECTION = "devel/python"
>   HOMEPAGE = " https://bitbucket.org/dwt/pyexpect"
>   LICENSE = "ISC"
> -LIC_FILES_CHKSUM = "file://README.md;md5=500b884e9dcd5f677a53cbbee8ace939"
> +LIC_FILES_CHKSUM = "file://README.md;md5=a6aa1e7097aca5955f9a2e1c8b0ce158"
>   
>   inherit pypi setuptools3
>   
> -SRC_URI[md5sum] = "dc744289858001925c75d21e26f1260f"
> -SRC_URI[sha256sum] = "bff4654b113dac6c2231e486e11dcb23281ddc0742a5404467303fe7638829ef"
> +SRC_URI[md5sum] = "7ebc843f015b54d849ac7632eda74e9b"
> +SRC_URI[sha256sum] = "acaaa6f96de315dc99cac3da810156bf3829d1eb5c49180f00a4fdde82eabc76"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 06/12] python3-pyjks: Upgrade 19.0.0 -> 20.0.0
  2020-06-25  9:07 ` [meta-python][PATCH 06/12] python3-pyjks: Upgrade 19.0.0 -> 20.0.0 Leon Anavi
@ 2020-06-26 15:01   ` Trevor Gamblin
  0 siblings, 0 replies; 24+ messages in thread
From: Trevor Gamblin @ 2020-06-26 15:01 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/25/20 5:07 AM, Leon Anavi wrote:
> Upgrade to release 20.0.0:
>
> - Mirrors keytool support for keystores with empty passphrases
> - Add Python 3.7 and 3.8 to support matrix
> - Docs and examples fixes
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pyjks_19.0.0.bb => python3-pyjks_20.0.0.bb}      | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pyjks_19.0.0.bb => python3-pyjks_20.0.0.bb} (81%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pyjks_19.0.0.bb b/meta-python/recipes-devtools/python/python3-pyjks_20.0.0.bb
> similarity index 81%
> rename from meta-python/recipes-devtools/python/python3-pyjks_19.0.0.bb
> rename to meta-python/recipes-devtools/python/python3-pyjks_20.0.0.bb
> index ee2f3075c..520899b8e 100644
> --- a/meta-python/recipes-devtools/python/python3-pyjks_19.0.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-pyjks_20.0.0.bb
> @@ -6,8 +6,8 @@ HOMEPAGE = "http://github.com/kurtbrose/pyjks"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=9694d6cc724caf7f7386be88a4a81958"
>   
> -SRC_URI[md5sum] = "b6e8f3b91be355d15e3ba99de2cccf9b"
> -SRC_URI[sha256sum] = "9ce5b40289bcdffcd6a8e7118b333ba8ba2ec4c9ebc5e324885cc8a69767011a"
> +SRC_URI[md5sum] = "1a6bce95484f1f62f8ff59755972c632"
> +SRC_URI[sha256sum] = "0378cec15fb11b2ed27ba54dad9fd987d48e6f62f49fcff138f5f7a8b312b044"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 07/12] python3-ruamel-yaml: Upgrade 0.16.5 0> 0.16.10
  2020-06-25  9:07 ` [meta-python][PATCH 07/12] python3-ruamel-yaml: Upgrade 0.16.5 0> 0.16.10 Leon Anavi
@ 2020-06-26 15:01   ` Trevor Gamblin
  0 siblings, 0 replies; 24+ messages in thread
From: Trevor Gamblin @ 2020-06-26 15:01 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/25/20 5:07 AM, Leon Anavi wrote:
> Upgrade to release 0.16.10:
>
> - updated image references in README to sourceforge
> - update requirements so that ruamel.yaml.clib is installed for
>    3.8, as it has become available
> - fix typchecking issue on TaggedScalar
> - fix error in dumping literal scalar in sequence with comments
>    before element
> - fix empty string mapping key roundtripping with preservation
>    of quotes as `? ''`
> - fix incorrect state setting in class constructor
> - adjust deprecation warning test for Hashable, as that no
>    longer warns
>
> The year in LICENSE has been updated and LIC_FILES_CHKSUM changed.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...ruamel-yaml_0.16.5.bb => python3-ruamel-yaml_0.16.10.bb} | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-ruamel-yaml_0.16.5.bb => python3-ruamel-yaml_0.16.10.bb} (57%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.5.bb b/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.10.bb
> similarity index 57%
> rename from meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.5.bb
> rename to meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.10.bb
> index ba095648f..076721a09 100644
> --- a/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.5.bb
> +++ b/meta-python/recipes-devtools/python/python3-ruamel-yaml_0.16.10.bb
> @@ -2,14 +2,14 @@ SUMMARY = "YAML parser/emitter that supports roundtrip preservation of comments,
>   AUTHOR = "Anthon van der Neut"
>   
>   LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=caf8bd842440b537c044e131785a4666"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=60afc0a1bb0501c0c555cabe78bba022"
>   
>   PYPI_PACKAGE = "ruamel.yaml"
>   
>   inherit pypi setuptools3
>   
> -SRC_URI[md5sum] = "7d5a5b0a7621a1247b081cc8e4978354"
> -SRC_URI[sha256sum] = "412a6f5cfdc0525dee6a27c08f5415c7fd832a7afcb7a0ed7319628aed23d408"
> +SRC_URI[md5sum] = "02774e7ed3273b3d8eee6c08326b91c4"
> +SRC_URI[sha256sum] = "099c644a778bf72ffa00524f78dd0b6476bca94a1da344130f4bf3381ce5b954"
>   
>   do_install_prepend() {
>       export RUAMEL_NO_PIP_INSTALL_CHECK=1
>
> 

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

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

* Re: [oe] [meta-python][PATCH 08/12] python3-pandas: Upgrade 1.0.3 -> 1.0.5
  2020-06-25  9:07 ` [meta-python][PATCH 08/12] python3-pandas: Upgrade 1.0.3 -> 1.0.5 Leon Anavi
@ 2020-06-26 15:01   ` Trevor Gamblin
  0 siblings, 0 replies; 24+ messages in thread
From: Trevor Gamblin @ 2020-06-26 15:01 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/25/20 5:07 AM, Leon Anavi wrote:
> Upgrade to release 1.0.5:
>
> - Fix regression in read_parquet() when reading from file-like
>    objects.
> - Fix regression in reading from public S3 buckets.
> - Fixed regression in replace() raising an AssertionError when
>    replacing values in an extension dtype with values of a
>    different dtype
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pandas_1.0.3.bb => python3-pandas_1.0.5.bb}      | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pandas_1.0.3.bb => python3-pandas_1.0.5.bb} (81%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.0.3.bb b/meta-python/recipes-devtools/python/python3-pandas_1.0.5.bb
> similarity index 81%
> rename from meta-python/recipes-devtools/python/python3-pandas_1.0.3.bb
> rename to meta-python/recipes-devtools/python/python3-pandas_1.0.5.bb
> index 099e035e1..d8db4cef3 100644
> --- a/meta-python/recipes-devtools/python/python3-pandas_1.0.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-pandas_1.0.5.bb
> @@ -6,8 +6,8 @@ HOMEPAGE = "http://pandas.pydata.org/"
>   LICENSE = "BSD-3-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=ee0470f2de336c370a71c2f8d5e81c11"
>   
> -SRC_URI[md5sum] = "a3ea90326c5b55944d369bef87740a72"
> -SRC_URI[sha256sum] = "32f42e322fb903d0e189a4c10b75ba70d90958cc4f66a1781ed027f1a1d14586"
> +SRC_URI[md5sum] = "5183db713194e6fbc96c45f30a0d1311"
> +SRC_URI[sha256sum] = "69c5d920a0b2a9838e677f78f4dde506b95ea8e4d30da25859db6469ded84fa8"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 09/12] python3-matplotlib: Upgrade 3.2.1 -> 3.2.2
  2020-06-25  9:07 ` [meta-python][PATCH 09/12] python3-matplotlib: Upgrade 3.2.1 -> 3.2.2 Leon Anavi
@ 2020-06-26 15:02   ` Trevor Gamblin
  0 siblings, 0 replies; 24+ messages in thread
From: Trevor Gamblin @ 2020-06-26 15:02 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/25/20 5:07 AM, Leon Anavi wrote:
> Upgrade to release 3.2.2:
>
> - Unit converters recognize subclasses
> - imsave accepts metadata and PIL options
> - cbook.normalize_kwargs
> - FontProperties accepts os.PathLike
> - Gouraud-shading alpha channel in PDF backend
> - Kerning adjustments now use correct values
> - bar3d lightsource shading
> - Shifting errorbars
> - Improvements in Logit scale ticker and formatter
> - rcParams for axes title location and color
> - 3-digit and 4-digit hex colors
>
> The line in setup.py for determining the license has changed.
> The license remains the same.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-matplotlib_3.2.1.bb => python3-matplotlib_3.2.2.bb} | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-matplotlib_3.2.1.bb => python3-matplotlib_3.2.2.bb} (79%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-matplotlib_3.2.1.bb b/meta-python/recipes-devtools/python/python3-matplotlib_3.2.2.bb
> similarity index 79%
> rename from meta-python/recipes-devtools/python/python3-matplotlib_3.2.1.bb
> rename to meta-python/recipes-devtools/python/python3-matplotlib_3.2.2.bb
> index f6d8c53d0..b32177d9b 100644
> --- a/meta-python/recipes-devtools/python/python3-matplotlib_3.2.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-matplotlib_3.2.2.bb
> @@ -7,7 +7,7 @@ HOMEPAGE = "https://github.com/matplotlib/matplotlib"
>   SECTION = "devel/python"
>   LICENSE = "PSF"
>   LIC_FILES_CHKSUM = "\
> -    file://setup.py;beginline=250;endline=250;md5=2a114620e4e6843aa7568d5902501753 \
> +    file://setup.py;beginline=253;endline=253;md5=2a114620e4e6843aa7568d5902501753 \
>       file://LICENSE/LICENSE;md5=afec61498aa5f0c45936687da9a53d74 \
>   "
>   DEPENDS = "\
> @@ -18,8 +18,8 @@ DEPENDS = "\
>       python3-pytz-native \
>   "
>   
> -SRC_URI[md5sum] = "6c018a644a88120886cc7211f7c826f0"
> -SRC_URI[sha256sum] = "ffe2f9cdcea1086fc414e82f42271ecf1976700b8edd16ca9d376189c6d93aee"
> +SRC_URI[md5sum] = "b60cd68f792a30173d825e16482aedd8"
> +SRC_URI[sha256sum] = "3d77a6630d093d74cbbfebaa0571d00790966be1ed204e4a8239f5cbd6835c5d"
>   
>   inherit pypi setuptools3 pkgconfig
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 10/12] python3-coverage: Upgrade 5.0.2 -> 5.1
  2020-06-25  9:07 ` [meta-python][PATCH 10/12] python3-coverage: Upgrade 5.0.2 -> 5.1 Leon Anavi
@ 2020-06-26 15:02   ` Trevor Gamblin
  0 siblings, 0 replies; 24+ messages in thread
From: Trevor Gamblin @ 2020-06-26 15:02 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/25/20 5:07 AM, Leon Anavi wrote:
> Upgrade to release 5.1:
>
> - The JSON report now includes counts of covered and missing
>    branches.
> - On Python 3.8, try-finally-return reported wrong branch coverage
>    with decorated async functions (issue 964). This is now fixed.
> - The :meth:`~coverage.Coverage.get_option` and
>    :meth:`~coverage.Coverage.set_option` methods can now manipulate
>    the [paths] configuration setting.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-coverage_5.0.2.bb => python3-coverage_5.1.bb}    | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-coverage_5.0.2.bb => python3-coverage_5.1.bb} (61%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-coverage_5.0.2.bb b/meta-python/recipes-devtools/python/python3-coverage_5.1.bb
> similarity index 61%
> rename from meta-python/recipes-devtools/python/python3-coverage_5.0.2.bb
> rename to meta-python/recipes-devtools/python/python3-coverage_5.1.bb
> index 9407278e9..7265d2c97 100644
> --- a/meta-python/recipes-devtools/python/python3-coverage_5.0.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-coverage_5.1.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://coverage.readthedocs.io"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2ee41112a44fe7014dce33e26468ba93"
>   
> -SRC_URI[md5sum] = "876be562bc78deac6fc2a06ee4a6d551"
> -SRC_URI[sha256sum] = "b251c7092cbb6d789d62dc9c9e7c4fb448c9138b51285c36aeb72462cad3600e"
> +SRC_URI[md5sum] = "506e30fb011158abe5ce92f39866b271"
> +SRC_URI[sha256sum] = "f90bfc4ad18450c80b024036eaf91e4a246ae287701aaa88eaebebf150868052"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 11/12] python3-coloredlogs: Upgrade 10.0 -> 14.0
  2020-06-25  9:07 ` [meta-python][PATCH 11/12] python3-coloredlogs: Upgrade 10.0 -> 14.0 Leon Anavi
@ 2020-06-26 15:02   ` Trevor Gamblin
  0 siblings, 0 replies; 24+ messages in thread
From: Trevor Gamblin @ 2020-06-26 15:02 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/25/20 5:07 AM, Leon Anavi wrote:
> Upgrade to release 14.0:
>
> - Integrate native Windows 10 support for ANSI escape sequences
> - Native support for ANSI escape sequences was added to Windows
>    10 after its initial release
> - Merged pull request #80 that drops support for Python 3.4
>    which has gone end-of-life and now represents less than 1% of
>    PyPI downloads.
> - Improved compatibility with the Python standard library by
>    changing the order of positional arguments received by the
>    initializer of the ColoredFormatter class
> - Add support for the %(username)s field and properly document
>    supported custom fields.
> - Consistently use console highlighting in documentation.
> - Fix a broken link in the readme.
>
> The year in LICENSE.txt has been updated.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-coloredlogs_10.0.bb => python3-coloredlogs_14.0.bb} | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-coloredlogs_10.0.bb => python3-coloredlogs_14.0.bb} (64%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-coloredlogs_10.0.bb b/meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb
> similarity index 64%
> rename from meta-python/recipes-devtools/python/python3-coloredlogs_10.0.bb
> rename to meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb
> index 88fac87c7..64f3008ee 100644
> --- a/meta-python/recipes-devtools/python/python3-coloredlogs_10.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-coloredlogs_14.0.bb
> @@ -2,10 +2,10 @@ DESCRIPTION = "Colored terminal output for Python's logging module"
>   HOMEPAGE = "https://coloredlogs.readthedocs.io"
>   SECTION = "devel/python"
>   LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=690da298a43805797a4fa7bbe180b3c6"
> +LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=764e737b117a38d773609885e8d04f0b"
>   
> -SRC_URI[md5sum] = "0a186966a1955fff8cf9489373e691d9"
> -SRC_URI[sha256sum] = "b869a2dda3fa88154b9dd850e27828d8755bfab5a838a1c97fbc850c6e377c36"
> +SRC_URI[md5sum] = "34cd8ef3f758b10c6f1482b2614a81f2"
> +SRC_URI[sha256sum] = "a1fab193d2053aa6c0a97608c4342d031f1f93a3d1218432c59322441d31a505"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 12/12] python3-astroid: Upgrade 2.3.3 -> 2.4.2
  2020-06-25  9:07 ` [meta-python][PATCH 12/12] python3-astroid: Upgrade 2.3.3 -> 2.4.2 Leon Anavi
@ 2020-06-26 15:02   ` Trevor Gamblin
  0 siblings, 0 replies; 24+ messages in thread
From: Trevor Gamblin @ 2020-06-26 15:02 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/25/20 5:07 AM, Leon Anavi wrote:
> Upgrade to release 2.4.2:
>
> - `FunctionDef.is_generator` properly handles `yield` nodes in
>    `While` tests
> - Properly construct the arguments of infered property descriptors
> - Handle the case where the raw builder fails to retrieve the
>    ``__all__`` attribute
> - Restructure the AST parsing heuristic to always pick the same
>    module
> - Do not crash with SyntaxError when parsing namedtuples with
>    invalid label
> - Expose a ast_from_string method in AstroidManager, which will
>    accept source code as a string and return the corresponding
>    astroid object
> - Prevent a recursion error to happen when inferring the declared
>    metaclass of a class
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-astroid_2.3.3.bb => python3-astroid_2.4.2.bb}    | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-astroid_2.3.3.bb => python3-astroid_2.4.2.bb} (84%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.3.3.bb b/meta-python/recipes-devtools/python/python3-astroid_2.4.2.bb
> similarity index 84%
> rename from meta-python/recipes-devtools/python/python3-astroid_2.3.3.bb
> rename to meta-python/recipes-devtools/python/python3-astroid_2.4.2.bb
> index dc1ce0eb4..677cec7ac 100644
> --- a/meta-python/recipes-devtools/python/python3-astroid_2.3.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-astroid_2.4.2.bb
> @@ -4,8 +4,8 @@ SECTION = "devel/python"
>   LICENSE = "LGPL-2.1"
>   LIC_FILES_CHKSUM = "file://COPYING;md5=751419260aa954499f7abaabaa882bbe"
>   
> -SRC_URI[md5sum] = "5f3d73d82d1753b59bb49a6bc6046dee"
> -SRC_URI[sha256sum] = "71ea07f44df9568a75d0f354c49143a4575d90645e9fead6dfb52c26a85ed13a"
> +SRC_URI[md5sum] = "b54e1325995d3a9abd84bac91d4d5867"
> +SRC_URI[sha256sum] = "2f4078c2a41bf377eea06d71c9d2ba4eb8f6b1af2135bec27bbbb7d8f12bb703"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

end of thread, other threads:[~2020-06-26 15:02 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-25  9:07 [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file Leon Anavi
2020-06-25  9:07 ` [meta-python][PATCH 02/12] python3-jsonpatch: Upgrade 1.25 -> 1.26 Leon Anavi
2020-06-26 15:00   ` [oe] " Trevor Gamblin
2020-06-25  9:07 ` [meta-python][PATCH 03/12] python3-socketio: Upgrade 4.5.1 -> 4.6.0 Leon Anavi
2020-06-26 15:00   ` [oe] " Trevor Gamblin
2020-06-25  9:07 ` [meta-python][PATCH 04/12] python3-twine: Upgrade 3.1.1 -> 3.2.0 Leon Anavi
2020-06-26 15:01   ` [oe] " Trevor Gamblin
2020-06-25  9:07 ` [meta-python][PATCH 05/12] python3-pyexpect: Upgrade 1.0.19 -> 1.0.20 Leon Anavi
2020-06-26 15:01   ` [oe] " Trevor Gamblin
2020-06-25  9:07 ` [meta-python][PATCH 06/12] python3-pyjks: Upgrade 19.0.0 -> 20.0.0 Leon Anavi
2020-06-26 15:01   ` [oe] " Trevor Gamblin
2020-06-25  9:07 ` [meta-python][PATCH 07/12] python3-ruamel-yaml: Upgrade 0.16.5 0> 0.16.10 Leon Anavi
2020-06-26 15:01   ` [oe] " Trevor Gamblin
2020-06-25  9:07 ` [meta-python][PATCH 08/12] python3-pandas: Upgrade 1.0.3 -> 1.0.5 Leon Anavi
2020-06-26 15:01   ` [oe] " Trevor Gamblin
2020-06-25  9:07 ` [meta-python][PATCH 09/12] python3-matplotlib: Upgrade 3.2.1 -> 3.2.2 Leon Anavi
2020-06-26 15:02   ` [oe] " Trevor Gamblin
2020-06-25  9:07 ` [meta-python][PATCH 10/12] python3-coverage: Upgrade 5.0.2 -> 5.1 Leon Anavi
2020-06-26 15:02   ` [oe] " Trevor Gamblin
2020-06-25  9:07 ` [meta-python][PATCH 11/12] python3-coloredlogs: Upgrade 10.0 -> 14.0 Leon Anavi
2020-06-26 15:02   ` [oe] " Trevor Gamblin
2020-06-25  9:07 ` [meta-python][PATCH 12/12] python3-astroid: Upgrade 2.3.3 -> 2.4.2 Leon Anavi
2020-06-26 15:02   ` [oe] " Trevor Gamblin
2020-06-26 15:00 ` [oe] [meta-python][PATCH 01/12] python3-pytun: Consolidate in a single file 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.