All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/7] python3-pymysql: Upgrade 0.9.3 -> 0.10.0
@ 2020-07-22 10:48 Leon Anavi
  2020-07-22 10:49 ` [meta-python][PATCH 2/7] python3-simplejson: Upgrade 3.17.0 -> 3.17.2 Leon Anavi
                   ` (6 more replies)
  0 siblings, 7 replies; 14+ messages in thread
From: Leon Anavi @ 2020-07-22 10:48 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.10.0:

- MariaDB ed25519 auth is supported.
- Python 3.4 support is dropped.
- Context manager interface is removed from Connection. It will
  be added with different meaning.
- MySQL warnings are not shown by default because many user report
  issue to PyMySQL issue tracker when they see warning. You need
  to call "SHOW WARNINGS" explicitly when you want to see warnings.
- Formatting of float object is changed from "3.14" to "3.14e0".
- Use cp1252 codec for latin1 charset.
- Fix decimal literal.
- TRUNCATED_WRONG_VALUE_FOR_FIELD, and ILLEGAL_VALUE_FOR_TYPE are
  now DataError instead of InternalError.

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

diff --git a/meta-python/recipes-devtools/python/python3-pymysql_0.9.3.bb b/meta-python/recipes-devtools/python/python3-pymysql_0.10.0.bb
similarity index 76%
rename from meta-python/recipes-devtools/python/python3-pymysql_0.9.3.bb
rename to meta-python/recipes-devtools/python/python3-pymysql_0.10.0.bb
index 6a64ccb16..895c47b03 100644
--- a/meta-python/recipes-devtools/python/python3-pymysql_0.9.3.bb
+++ b/meta-python/recipes-devtools/python/python3-pymysql_0.10.0.bb
@@ -8,8 +8,8 @@ HOMEPAGE = "https://pymysql.readthedocs.io"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=528175c84163bb800d23ad835c7fa0fc"
 
-SRC_URI[md5sum] = "e5d9183cc0a775ac29f9e0365cca6556"
-SRC_URI[sha256sum] = "d8c059dcd81dedb85a9f034d5e22dcb4442c0b201908bede99e306d65ea7c8e7"
+SRC_URI[md5sum] = "d08058b1592724d5808c43f56050f245"
+SRC_URI[sha256sum] = "e14070bc84e050e0f80bf6063e31d276f03a0bb4d46b9eca2854566c4ae19837"
 
 PYPI_PACKAGE = "PyMySQL"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 2/7] python3-simplejson: Upgrade 3.17.0 -> 3.17.2
  2020-07-22 10:48 [meta-python][PATCH 1/7] python3-pymysql: Upgrade 0.9.3 -> 0.10.0 Leon Anavi
@ 2020-07-22 10:49 ` Leon Anavi
  2020-07-23 16:47   ` [oe] " Trevor Gamblin
  2020-07-22 10:49 ` [meta-python][PATCH 3/7] python3-isort: Upgrade 5.1.0 -> 5.1.4 Leon Anavi
                   ` (5 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-07-22 10:49 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.17.2:

* Added arm64 to build matrix and reintroduced
  manylinux wheels
* No more bdist_wininst builds per PEP 527
* Minor grammatical issue fixed in README

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

diff --git a/meta-python/recipes-devtools/python/python3-simplejson_3.17.0.bb b/meta-python/recipes-devtools/python/python3-simplejson_3.17.2.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-simplejson_3.17.0.bb
rename to meta-python/recipes-devtools/python/python3-simplejson_3.17.2.bb
index b76ae5299..cab0da6a1 100644
--- a/meta-python/recipes-devtools/python/python3-simplejson_3.17.0.bb
+++ b/meta-python/recipes-devtools/python/python3-simplejson_3.17.2.bb
@@ -4,8 +4,8 @@ HOMEPAGE = "http://cheeseshop.python.org/pypi/simplejson"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c6338d7abd321c0b50a2a547e441c52e"
 
-SRC_URI[md5sum] = "8a5ed75c367b90fedc3d685742e2a1c7"
-SRC_URI[sha256sum] = "2b4b2b738b3b99819a17feaf118265d0753d5536049ea570b3c43b51c4701e81"
+SRC_URI[md5sum] = "27fba3bc75a32318bd3b163b8a31aa7e"
+SRC_URI[sha256sum] = "75ecc79f26d99222a084fbdd1ce5aad3ac3a8bd535cd9059528452da38b68841"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 3/7] python3-isort: Upgrade 5.1.0 -> 5.1.4
  2020-07-22 10:48 [meta-python][PATCH 1/7] python3-pymysql: Upgrade 0.9.3 -> 0.10.0 Leon Anavi
  2020-07-22 10:49 ` [meta-python][PATCH 2/7] python3-simplejson: Upgrade 3.17.0 -> 3.17.2 Leon Anavi
@ 2020-07-22 10:49 ` Leon Anavi
  2020-07-23 16:47   ` [oe] " Trevor Gamblin
  2020-07-22 10:49 ` [meta-python][PATCH 4/7] python3-stevedore: Upgrade 2.0.1 -> 3.2.0 Leon Anavi
                   ` (4 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-07-22 10:49 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 5.1.4:

- Fixed issue #1333: Use of wrap_length raises an exception about
  it not being lower or equal to line_length.
- Fixed issue #1330: Ensure stdout can be stubbed dynamically for
  show_unified_diff function.

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

diff --git a/meta-python/recipes-devtools/python/python3-isort_5.1.0.bb b/meta-python/recipes-devtools/python/python3-isort_5.1.4.bb
similarity index 73%
rename from meta-python/recipes-devtools/python/python3-isort_5.1.0.bb
rename to meta-python/recipes-devtools/python/python3-isort_5.1.4.bb
index a57b22361..59ff2ffe1 100644
--- a/meta-python/recipes-devtools/python/python3-isort_5.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-isort_5.1.4.bb
@@ -4,8 +4,8 @@ LICENSE = "MIT"
 SECTION = "devel/python"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=6;endline=6;md5=8227180126797a0148f94f483f3e1489"
 
-SRC_URI[md5sum] = "9e47f58de573c3fab674a70f0512e9f7"
-SRC_URI[sha256sum] = "b19b7ebce5e292507afa8fab30dd666011dd5ae8f4ef2a2d431751dc84c22140"
+SRC_URI[md5sum] = "64d552bbcef48219572cc39649c48fbd"
+SRC_URI[sha256sum] = "145072eedc4927cc9c1f9478f2d83b2fc1e6469df4129c02ef4e8c742207a46c"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 4/7] python3-stevedore: Upgrade 2.0.1 -> 3.2.0
  2020-07-22 10:48 [meta-python][PATCH 1/7] python3-pymysql: Upgrade 0.9.3 -> 0.10.0 Leon Anavi
  2020-07-22 10:49 ` [meta-python][PATCH 2/7] python3-simplejson: Upgrade 3.17.0 -> 3.17.2 Leon Anavi
  2020-07-22 10:49 ` [meta-python][PATCH 3/7] python3-isort: Upgrade 5.1.0 -> 5.1.4 Leon Anavi
@ 2020-07-22 10:49 ` Leon Anavi
  2020-07-23 16:47   ` [oe] " Trevor Gamblin
  2020-07-22 10:49 ` [meta-python][PATCH 5/7] python3-mock: Upgrade 4.0.1 -> 4.0.2 Leon Anavi
                   ` (3 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-07-22 10:49 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.2.0:

- sphinxext: fix warning message for detailed list
- add release note before major version update
- switch to importlib.metadata package

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

diff --git a/meta-python/recipes-devtools/python/python3-stevedore_2.0.1.bb b/meta-python/recipes-devtools/python/python3-stevedore_3.2.0.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-stevedore_2.0.1.bb
rename to meta-python/recipes-devtools/python/python3-stevedore_3.2.0.bb
index cf388fa7c..0a2bffdcc 100644
--- a/meta-python/recipes-devtools/python/python3-stevedore_2.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-stevedore_3.2.0.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://docs.openstack.org/stevedore/latest/"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
 
-SRC_URI[md5sum] = "d0f137ec4fe5d98978970671a860882d"
-SRC_URI[sha256sum] = "609912b87df5ad338ff8e44d13eaad4f4170a65b79ae9cb0aa5632598994a1b7"
+SRC_URI[md5sum] = "6a39764d7aecc63a0990cf4635cb430d"
+SRC_URI[sha256sum] = "38791aa5bed922b0a844513c5f9ed37774b68edc609e5ab8ab8d8fe0ce4315e5"
 
 DEPENDS += "${PYTHON_PN}-pbr-native"
 
-- 
2.17.1


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

* [meta-python][PATCH 5/7] python3-mock: Upgrade 4.0.1 -> 4.0.2
  2020-07-22 10:48 [meta-python][PATCH 1/7] python3-pymysql: Upgrade 0.9.3 -> 0.10.0 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-07-22 10:49 ` [meta-python][PATCH 4/7] python3-stevedore: Upgrade 2.0.1 -> 3.2.0 Leon Anavi
@ 2020-07-22 10:49 ` Leon Anavi
  2020-07-23 16:47   ` [oe] " Trevor Gamblin
  2020-07-22 10:49 ` [meta-python][PATCH 6/7] python3-pychromecast: Upgrade 7.1.1 -> 7.1.2 Leon Anavi
                   ` (2 subsequent siblings)
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-07-22 10:49 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade 4.0.2:

- Issue #39915: Ensure unittest.mock.AsyncMock.await_args_list has
  call objects in the order of awaited arguments instead of using
  unittest.mock.Mock.call_args which has the last value of the
  call. Patch by Karthikeyan Singaravelan.

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

diff --git a/meta-python/recipes-devtools/python/python3-mock_4.0.1.bb b/meta-python/recipes-devtools/python/python3-mock_4.0.2.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-mock_4.0.1.bb
rename to meta-python/recipes-devtools/python/python3-mock_4.0.2.bb
index eebfcdade..39ab6d01f 100644
--- a/meta-python/recipes-devtools/python/python3-mock_4.0.1.bb
+++ b/meta-python/recipes-devtools/python/python3-mock_4.0.2.bb
@@ -13,5 +13,5 @@ RDEPENDS_${PN} += "${PYTHON_PN}-prettytable \
             ${PYTHON_PN}-pep8 \
             ${PYTHON_PN}-pyflakes"
 
-SRC_URI[md5sum] = "8f48ba3fd059e7cfad92f8354064adfd"
-SRC_URI[sha256sum] = "2a572b715f09dd2f0a583d8aeb5bb67d7ed7a8fd31d193cf1227a99c16a67bc3"
+SRC_URI[md5sum] = "6466619b89c2969dc57722ad73f85676"
+SRC_URI[sha256sum] = "dd33eb70232b6118298d516bbcecd26704689c386594f0f3c4f13867b2c56f72"
-- 
2.17.1


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

* [meta-python][PATCH 6/7] python3-pychromecast: Upgrade 7.1.1 -> 7.1.2
  2020-07-22 10:48 [meta-python][PATCH 1/7] python3-pymysql: Upgrade 0.9.3 -> 0.10.0 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-07-22 10:49 ` [meta-python][PATCH 5/7] python3-mock: Upgrade 4.0.1 -> 4.0.2 Leon Anavi
@ 2020-07-22 10:49 ` Leon Anavi
  2020-07-23 16:48   ` [oe] " Trevor Gamblin
  2020-07-22 10:49 ` [meta-python][PATCH 7/7] python3-coverage: Upgrade 5.1 -> 5.2 Leon Anavi
  2020-07-23 16:47 ` [oe] [meta-python][PATCH 1/7] python3-pymysql: Upgrade 0.9.3 -> 0.10.0 Trevor Gamblin
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-07-22 10:49 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 7.1.2:

- Keep previously known Chromecast in service listener
- Remove reboot function
- Create Dependabot config file

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

diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_7.1.1.bb b/meta-python/recipes-devtools/python/python3-pychromecast_7.1.2.bb
similarity index 66%
rename from meta-python/recipes-devtools/python/python3-pychromecast_7.1.1.bb
rename to meta-python/recipes-devtools/python/python3-pychromecast_7.1.2.bb
index 3da979c0f..98dbf33b2 100644
--- a/meta-python/recipes-devtools/python/python3-pychromecast_7.1.1.bb
+++ b/meta-python/recipes-devtools/python/python3-pychromecast_7.1.2.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/balloob/pychromecast"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5"
 
-SRC_URI[md5sum] = "897e7acd6ac2c01f3df2e2d6b2e13c11"
-SRC_URI[sha256sum] = "87fa9ad42425edd21e02a9240669e5763e52d975ee259a948a6fe07e6ab977b9"
+SRC_URI[md5sum] = "6ca5102b09009c85424a9ab628005992"
+SRC_URI[sha256sum] = "adcf478d7fc539e9decde59b2db7b6a4b1d679c4cf78d515d880adb1c4bc1c30"
 
 PYPI_PACKAGE = "PyChromecast"
 
-- 
2.17.1


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

* [meta-python][PATCH 7/7] python3-coverage: Upgrade 5.1 -> 5.2
  2020-07-22 10:48 [meta-python][PATCH 1/7] python3-pymysql: Upgrade 0.9.3 -> 0.10.0 Leon Anavi
                   ` (4 preceding siblings ...)
  2020-07-22 10:49 ` [meta-python][PATCH 6/7] python3-pychromecast: Upgrade 7.1.1 -> 7.1.2 Leon Anavi
@ 2020-07-22 10:49 ` Leon Anavi
  2020-07-23 16:48   ` [oe] " Trevor Gamblin
  2020-07-23 16:47 ` [oe] [meta-python][PATCH 1/7] python3-pymysql: Upgrade 0.9.3 -> 0.10.0 Trevor Gamblin
  6 siblings, 1 reply; 14+ messages in thread
From: Leon Anavi @ 2020-07-22 10:49 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 5.2:

- The HTML report has been redesigned by Vince Salvino. There is
  now a dark mode, the code text is larger, and system sans serif
  fonts are used, in addition to other small changes.
- The coverage report and coverage html commands now accept a
  --precision option to control the number of decimal points
  displayed. Thanks, Teake Nutma.
- The coverage report and coverage html commands now accept a
  --no-skip-covered option to negate --skip-covered.
  Thanks, Anthony Sottile.
- The --skip-empty option is now available for the XML report.
- The coverage report command now accepts a --sort option to
  specify how to sort the results. Thanks, Jerin Peter George.
- If coverage fails due to the coverage total not reaching the
  --fail-under value, it will now print a message making the
  condition clear. Thanks, Naveen Yadav.
- TOML configuration files with non-ASCII characters would cause
  errors on Windows. This is now fixed.
- The output of --debug=trace now includes information about how
  the --source option is being interpreted, and the module names
  being considered.

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

diff --git a/meta-python/recipes-devtools/python/python3-coverage_5.1.bb b/meta-python/recipes-devtools/python/python3-coverage_5.2.bb
similarity index 61%
rename from meta-python/recipes-devtools/python/python3-coverage_5.1.bb
rename to meta-python/recipes-devtools/python/python3-coverage_5.2.bb
index 7265d2c97..72558e10c 100644
--- a/meta-python/recipes-devtools/python/python3-coverage_5.1.bb
+++ b/meta-python/recipes-devtools/python/python3-coverage_5.2.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] = "506e30fb011158abe5ce92f39866b271"
-SRC_URI[sha256sum] = "f90bfc4ad18450c80b024036eaf91e4a246ae287701aaa88eaebebf150868052"
+SRC_URI[md5sum] = "bfe80a336636160a3916467f55842bc5"
+SRC_URI[sha256sum] = "1874bdc943654ba46d28f179c1846f5710eda3aeb265ff029e0ac2b52daae404"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 1/7] python3-pymysql: Upgrade 0.9.3 -> 0.10.0
  2020-07-22 10:48 [meta-python][PATCH 1/7] python3-pymysql: Upgrade 0.9.3 -> 0.10.0 Leon Anavi
                   ` (5 preceding siblings ...)
  2020-07-22 10:49 ` [meta-python][PATCH 7/7] python3-coverage: Upgrade 5.1 -> 5.2 Leon Anavi
@ 2020-07-23 16:47 ` Trevor Gamblin
  6 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-23 16:47 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/22/20 6:48 AM, Leon Anavi wrote:
> Upgrade to release 0.10.0:
>
> - MariaDB ed25519 auth is supported.
> - Python 3.4 support is dropped.
> - Context manager interface is removed from Connection. It will
>    be added with different meaning.
> - MySQL warnings are not shown by default because many user report
>    issue to PyMySQL issue tracker when they see warning. You need
>    to call "SHOW WARNINGS" explicitly when you want to see warnings.
> - Formatting of float object is changed from "3.14" to "3.14e0".
> - Use cp1252 codec for latin1 charset.
> - Fix decimal literal.
> - TRUNCATED_WRONG_VALUE_FOR_FIELD, and ILLEGAL_VALUE_FOR_TYPE are
>    now DataError instead of InternalError.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-pymysql_0.9.3.bb => python3-pymysql_0.10.0.bb}   | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pymysql_0.9.3.bb => python3-pymysql_0.10.0.bb} (76%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pymysql_0.9.3.bb b/meta-python/recipes-devtools/python/python3-pymysql_0.10.0.bb
> similarity index 76%
> rename from meta-python/recipes-devtools/python/python3-pymysql_0.9.3.bb
> rename to meta-python/recipes-devtools/python/python3-pymysql_0.10.0.bb
> index 6a64ccb16..895c47b03 100644
> --- a/meta-python/recipes-devtools/python/python3-pymysql_0.9.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-pymysql_0.10.0.bb
> @@ -8,8 +8,8 @@ HOMEPAGE = "https://pymysql.readthedocs.io"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=528175c84163bb800d23ad835c7fa0fc"
>   
> -SRC_URI[md5sum] = "e5d9183cc0a775ac29f9e0365cca6556"
> -SRC_URI[sha256sum] = "d8c059dcd81dedb85a9f034d5e22dcb4442c0b201908bede99e306d65ea7c8e7"
> +SRC_URI[md5sum] = "d08058b1592724d5808c43f56050f245"
> +SRC_URI[sha256sum] = "e14070bc84e050e0f80bf6063e31d276f03a0bb4d46b9eca2854566c4ae19837"
>   
>   PYPI_PACKAGE = "PyMySQL"
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 2/7] python3-simplejson: Upgrade 3.17.0 -> 3.17.2
  2020-07-22 10:49 ` [meta-python][PATCH 2/7] python3-simplejson: Upgrade 3.17.0 -> 3.17.2 Leon Anavi
@ 2020-07-23 16:47   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-23 16:47 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/22/20 6:49 AM, Leon Anavi wrote:
> Upgrade to release 3.17.2:
>
> * Added arm64 to build matrix and reintroduced
>    manylinux wheels
> * No more bdist_wininst builds per PEP 527
> * Minor grammatical issue fixed in README
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-simplejson_3.17.0.bb => python3-simplejson_3.17.2.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-simplejson_3.17.0.bb => python3-simplejson_3.17.2.bb} (80%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-simplejson_3.17.0.bb b/meta-python/recipes-devtools/python/python3-simplejson_3.17.2.bb
> similarity index 80%
> rename from meta-python/recipes-devtools/python/python3-simplejson_3.17.0.bb
> rename to meta-python/recipes-devtools/python/python3-simplejson_3.17.2.bb
> index b76ae5299..cab0da6a1 100644
> --- a/meta-python/recipes-devtools/python/python3-simplejson_3.17.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-simplejson_3.17.2.bb
> @@ -4,8 +4,8 @@ HOMEPAGE = "http://cheeseshop.python.org/pypi/simplejson"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=c6338d7abd321c0b50a2a547e441c52e"
>   
> -SRC_URI[md5sum] = "8a5ed75c367b90fedc3d685742e2a1c7"
> -SRC_URI[sha256sum] = "2b4b2b738b3b99819a17feaf118265d0753d5536049ea570b3c43b51c4701e81"
> +SRC_URI[md5sum] = "27fba3bc75a32318bd3b163b8a31aa7e"
> +SRC_URI[sha256sum] = "75ecc79f26d99222a084fbdd1ce5aad3ac3a8bd535cd9059528452da38b68841"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 3/7] python3-isort: Upgrade 5.1.0 -> 5.1.4
  2020-07-22 10:49 ` [meta-python][PATCH 3/7] python3-isort: Upgrade 5.1.0 -> 5.1.4 Leon Anavi
@ 2020-07-23 16:47   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-23 16:47 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/22/20 6:49 AM, Leon Anavi wrote:
> Upgrade to release 5.1.4:
>
> - Fixed issue #1333: Use of wrap_length raises an exception about
>    it not being lower or equal to line_length.
> - Fixed issue #1330: Ensure stdout can be stubbed dynamically for
>    show_unified_diff function.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-isort_5.1.0.bb => python3-isort_5.1.4.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-isort_5.1.0.bb => python3-isort_5.1.4.bb} (73%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-isort_5.1.0.bb b/meta-python/recipes-devtools/python/python3-isort_5.1.4.bb
> similarity index 73%
> rename from meta-python/recipes-devtools/python/python3-isort_5.1.0.bb
> rename to meta-python/recipes-devtools/python/python3-isort_5.1.4.bb
> index a57b22361..59ff2ffe1 100644
> --- a/meta-python/recipes-devtools/python/python3-isort_5.1.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-isort_5.1.4.bb
> @@ -4,8 +4,8 @@ LICENSE = "MIT"
>   SECTION = "devel/python"
>   LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=6;endline=6;md5=8227180126797a0148f94f483f3e1489"
>   
> -SRC_URI[md5sum] = "9e47f58de573c3fab674a70f0512e9f7"
> -SRC_URI[sha256sum] = "b19b7ebce5e292507afa8fab30dd666011dd5ae8f4ef2a2d431751dc84c22140"
> +SRC_URI[md5sum] = "64d552bbcef48219572cc39649c48fbd"
> +SRC_URI[sha256sum] = "145072eedc4927cc9c1f9478f2d83b2fc1e6469df4129c02ef4e8c742207a46c"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 4/7] python3-stevedore: Upgrade 2.0.1 -> 3.2.0
  2020-07-22 10:49 ` [meta-python][PATCH 4/7] python3-stevedore: Upgrade 2.0.1 -> 3.2.0 Leon Anavi
@ 2020-07-23 16:47   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-23 16:47 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/22/20 6:49 AM, Leon Anavi wrote:
> Upgrade to release 3.2.0:
>
> - sphinxext: fix warning message for detailed list
> - add release note before major version update
> - switch to importlib.metadata package
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...{python3-stevedore_2.0.1.bb => python3-stevedore_3.2.0.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-stevedore_2.0.1.bb => python3-stevedore_3.2.0.bb} (72%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-stevedore_2.0.1.bb b/meta-python/recipes-devtools/python/python3-stevedore_3.2.0.bb
> similarity index 72%
> rename from meta-python/recipes-devtools/python/python3-stevedore_2.0.1.bb
> rename to meta-python/recipes-devtools/python/python3-stevedore_3.2.0.bb
> index cf388fa7c..0a2bffdcc 100644
> --- a/meta-python/recipes-devtools/python/python3-stevedore_2.0.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-stevedore_3.2.0.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://docs.openstack.org/stevedore/latest/"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=3b83ef96387f14655fc854ddc3c6bd57"
>   
> -SRC_URI[md5sum] = "d0f137ec4fe5d98978970671a860882d"
> -SRC_URI[sha256sum] = "609912b87df5ad338ff8e44d13eaad4f4170a65b79ae9cb0aa5632598994a1b7"
> +SRC_URI[md5sum] = "6a39764d7aecc63a0990cf4635cb430d"
> +SRC_URI[sha256sum] = "38791aa5bed922b0a844513c5f9ed37774b68edc609e5ab8ab8d8fe0ce4315e5"
>   
>   DEPENDS += "${PYTHON_PN}-pbr-native"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 5/7] python3-mock: Upgrade 4.0.1 -> 4.0.2
  2020-07-22 10:49 ` [meta-python][PATCH 5/7] python3-mock: Upgrade 4.0.1 -> 4.0.2 Leon Anavi
@ 2020-07-23 16:47   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-23 16:47 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/22/20 6:49 AM, Leon Anavi wrote:
> Upgrade 4.0.2:
>
> - Issue #39915: Ensure unittest.mock.AsyncMock.await_args_list has
>    call objects in the order of awaited arguments instead of using
>    unittest.mock.Mock.call_args which has the last value of the
>    call. Patch by Karthikeyan Singaravelan.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-mock_4.0.1.bb => python3-mock_4.0.2.bb}   | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-mock_4.0.1.bb => python3-mock_4.0.2.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-mock_4.0.1.bb b/meta-python/recipes-devtools/python/python3-mock_4.0.2.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-mock_4.0.1.bb
> rename to meta-python/recipes-devtools/python/python3-mock_4.0.2.bb
> index eebfcdade..39ab6d01f 100644
> --- a/meta-python/recipes-devtools/python/python3-mock_4.0.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-mock_4.0.2.bb
> @@ -13,5 +13,5 @@ RDEPENDS_${PN} += "${PYTHON_PN}-prettytable \
>               ${PYTHON_PN}-pep8 \
>               ${PYTHON_PN}-pyflakes"
>   
> -SRC_URI[md5sum] = "8f48ba3fd059e7cfad92f8354064adfd"
> -SRC_URI[sha256sum] = "2a572b715f09dd2f0a583d8aeb5bb67d7ed7a8fd31d193cf1227a99c16a67bc3"
> +SRC_URI[md5sum] = "6466619b89c2969dc57722ad73f85676"
> +SRC_URI[sha256sum] = "dd33eb70232b6118298d516bbcecd26704689c386594f0f3c4f13867b2c56f72"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 6/7] python3-pychromecast: Upgrade 7.1.1 -> 7.1.2
  2020-07-22 10:49 ` [meta-python][PATCH 6/7] python3-pychromecast: Upgrade 7.1.1 -> 7.1.2 Leon Anavi
@ 2020-07-23 16:48   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-23 16:48 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/22/20 6:49 AM, Leon Anavi wrote:
> Upgrade to release 7.1.2:
>
> - Keep previously known Chromecast in service listener
> - Remove reboot function
> - Create Dependabot config file
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...n3-pychromecast_7.1.1.bb => python3-pychromecast_7.1.2.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pychromecast_7.1.1.bb => python3-pychromecast_7.1.2.bb} (66%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pychromecast_7.1.1.bb b/meta-python/recipes-devtools/python/python3-pychromecast_7.1.2.bb
> similarity index 66%
> rename from meta-python/recipes-devtools/python/python3-pychromecast_7.1.1.bb
> rename to meta-python/recipes-devtools/python/python3-pychromecast_7.1.2.bb
> index 3da979c0f..98dbf33b2 100644
> --- a/meta-python/recipes-devtools/python/python3-pychromecast_7.1.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-pychromecast_7.1.2.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/balloob/pychromecast"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=b1dbd4e85f47b389bdadee9c694669f5"
>   
> -SRC_URI[md5sum] = "897e7acd6ac2c01f3df2e2d6b2e13c11"
> -SRC_URI[sha256sum] = "87fa9ad42425edd21e02a9240669e5763e52d975ee259a948a6fe07e6ab977b9"
> +SRC_URI[md5sum] = "6ca5102b09009c85424a9ab628005992"
> +SRC_URI[sha256sum] = "adcf478d7fc539e9decde59b2db7b6a4b1d679c4cf78d515d880adb1c4bc1c30"
>   
>   PYPI_PACKAGE = "PyChromecast"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 7/7] python3-coverage: Upgrade 5.1 -> 5.2
  2020-07-22 10:49 ` [meta-python][PATCH 7/7] python3-coverage: Upgrade 5.1 -> 5.2 Leon Anavi
@ 2020-07-23 16:48   ` Trevor Gamblin
  0 siblings, 0 replies; 14+ messages in thread
From: Trevor Gamblin @ 2020-07-23 16:48 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 7/22/20 6:49 AM, Leon Anavi wrote:
> Upgrade to release 5.2:
>
> - The HTML report has been redesigned by Vince Salvino. There is
>    now a dark mode, the code text is larger, and system sans serif
>    fonts are used, in addition to other small changes.
> - The coverage report and coverage html commands now accept a
>    --precision option to control the number of decimal points
>    displayed. Thanks, Teake Nutma.
> - The coverage report and coverage html commands now accept a
>    --no-skip-covered option to negate --skip-covered.
>    Thanks, Anthony Sottile.
> - The --skip-empty option is now available for the XML report.
> - The coverage report command now accepts a --sort option to
>    specify how to sort the results. Thanks, Jerin Peter George.
> - If coverage fails due to the coverage total not reaching the
>    --fail-under value, it will now print a message making the
>    condition clear. Thanks, Naveen Yadav.
> - TOML configuration files with non-ASCII characters would cause
>    errors on Windows. This is now fixed.
> - The output of --debug=trace now includes information about how
>    the --source option is being interpreted, and the module names
>    being considered.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-coverage_5.1.bb => python3-coverage_5.2.bb}      | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-coverage_5.1.bb => python3-coverage_5.2.bb} (61%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-coverage_5.1.bb b/meta-python/recipes-devtools/python/python3-coverage_5.2.bb
> similarity index 61%
> rename from meta-python/recipes-devtools/python/python3-coverage_5.1.bb
> rename to meta-python/recipes-devtools/python/python3-coverage_5.2.bb
> index 7265d2c97..72558e10c 100644
> --- a/meta-python/recipes-devtools/python/python3-coverage_5.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-coverage_5.2.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] = "506e30fb011158abe5ce92f39866b271"
> -SRC_URI[sha256sum] = "f90bfc4ad18450c80b024036eaf91e4a246ae287701aaa88eaebebf150868052"
> +SRC_URI[md5sum] = "bfe80a336636160a3916467f55842bc5"
> +SRC_URI[sha256sum] = "1874bdc943654ba46d28f179c1846f5710eda3aeb265ff029e0ac2b52daae404"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

end of thread, other threads:[~2020-07-23 16:48 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-22 10:48 [meta-python][PATCH 1/7] python3-pymysql: Upgrade 0.9.3 -> 0.10.0 Leon Anavi
2020-07-22 10:49 ` [meta-python][PATCH 2/7] python3-simplejson: Upgrade 3.17.0 -> 3.17.2 Leon Anavi
2020-07-23 16:47   ` [oe] " Trevor Gamblin
2020-07-22 10:49 ` [meta-python][PATCH 3/7] python3-isort: Upgrade 5.1.0 -> 5.1.4 Leon Anavi
2020-07-23 16:47   ` [oe] " Trevor Gamblin
2020-07-22 10:49 ` [meta-python][PATCH 4/7] python3-stevedore: Upgrade 2.0.1 -> 3.2.0 Leon Anavi
2020-07-23 16:47   ` [oe] " Trevor Gamblin
2020-07-22 10:49 ` [meta-python][PATCH 5/7] python3-mock: Upgrade 4.0.1 -> 4.0.2 Leon Anavi
2020-07-23 16:47   ` [oe] " Trevor Gamblin
2020-07-22 10:49 ` [meta-python][PATCH 6/7] python3-pychromecast: Upgrade 7.1.1 -> 7.1.2 Leon Anavi
2020-07-23 16:48   ` [oe] " Trevor Gamblin
2020-07-22 10:49 ` [meta-python][PATCH 7/7] python3-coverage: Upgrade 5.1 -> 5.2 Leon Anavi
2020-07-23 16:48   ` [oe] " Trevor Gamblin
2020-07-23 16:47 ` [oe] [meta-python][PATCH 1/7] python3-pymysql: Upgrade 0.9.3 -> 0.10.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.