All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17
@ 2020-06-23  9:51 Leon Anavi
  2020-06-23  9:51 ` [meta-python][PATCH 02/11] python3-sh: Upgrade 1.12.14 -> 1.13.1 Leon Anavi
                   ` (10 more replies)
  0 siblings, 11 replies; 22+ messages in thread
From: Leon Anavi @ 2020-06-23  9:51 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.3.17:

- orm Bug fixes
- orm Added an accessor ColumnProperty.Comparator.expressions
  which provides access to the group of columns mapped under a
  multi-column ColumnProperty attribute.
- orm Introduce _orm.relationship.sync_backref flag in a
  relationship to control if the synchronization events that
  mutate the in-Python attributes are added. This supersedes the
  previous change #5149, which warned that viewonly=True
  relationship target of a back_populates or backref configuration
  would be disallowed.
- engine Bug fixes
- schema Bug fixes
- schema Add comment attribute to _schema.Column __repr__ method.

The year in LICENSE has been updated so LIC_FILES_CHKSUM was
changed.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...n3-sqlalchemy_1.3.12.bb => python3-sqlalchemy_1.3.17.bb} | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-sqlalchemy_1.3.12.bb => python3-sqlalchemy_1.3.17.bb} (67%)

diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.12.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.17.bb
similarity index 67%
rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.12.bb
rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.17.bb
index e29b572cb..b9c58e5b6 100644
--- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.12.bb
+++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.17.bb
@@ -2,10 +2,10 @@ DESCRIPTION = "Python SQL toolkit and Object Relational Mapper that gives \
 application developers the full power and flexibility of SQL"
 HOMEPAGE = "http://www.sqlalchemy.org/"
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=2f5eb030c48975d5294baf0f5d01af1c"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=c19467890539ff718c00a019c9c7a7b2"
 
-SRC_URI[md5sum] = "02a46be841903b60c52a83342d3ced8e"
-SRC_URI[sha256sum] = "bfb8f464a5000b567ac1d350b9090cf081180ec1ab4aa87e7bca12dab25320ec"
+SRC_URI[md5sum] = "478214152b9293bf5652815d7312c890"
+SRC_URI[sha256sum] = "156a27548ba4e1fed944ff9fcdc150633e61d350d673ae7baaf6c25c04ac1f71"
 
 PYPI_PACKAGE = "SQLAlchemy"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 02/11] python3-sh: Upgrade 1.12.14 -> 1.13.1
  2020-06-23  9:51 [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Leon Anavi
@ 2020-06-23  9:51 ` Leon Anavi
  2020-06-25 13:00   ` [oe] " Trevor Gamblin
  2020-06-23  9:51 ` [meta-python][PATCH 03/11] python3-certifi: Upgrade 2019.11.28 -> 2020.6.20 Leon Anavi
                   ` (9 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Leon Anavi @ 2020-06-23  9:51 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.13.1:

- regression fix if _fg=False
- minor Travis CI fixes
- bugfix for boolean long options not respecting _long_prefix
- fix deprecation warning on Python 3.6 regexes
- _pass_fds and _close_fds special kwargs for controlling file
  descriptor inheritance in child.
- more efficiently closing inherited fds
- bugfix where passing invalid dictionary to _env will cause a
  mysterious child 255 exit code.
- bugfix where _in using 0 or sys.stdin wasn't behaving like a
  TTY, if it was in fact a TTY.
- bugfix where help(sh) raised an exception
- bugfix fixing broken interactive ssh tutorial from docs
- change to automatic tty merging into a single pty if
  _tty_in=True and _tty_out=True
- introducing _unify_ttys, default False, which allows explicit
  tty merging into single pty
- contrib command for ssh connections requiring passwords
- performance fix for polling output too fast when using _iter
- execution contexts can now be used in python shell
- bugfix ErrorReturnCode instances can now be pickled
- bugfix passing empty string or None for _in hanged
- bugfix where passing a filename or file-like object to _out
  wasn't using os.dup2
- regression make _fg work with _cwd again
- an invalid _cwd now raises a ForkException not an OSError.
- AIX support
- added a timeout=None param to RunningCommand.wait()

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

diff --git a/meta-python/recipes-devtools/python/python3-sh_1.12.14.bb b/meta-python/recipes-devtools/python/python3-sh_1.13.1.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-sh_1.12.14.bb
rename to meta-python/recipes-devtools/python/python3-sh_1.13.1.bb
index b7858734b..2a6d9bcc6 100644
--- a/meta-python/recipes-devtools/python/python3-sh_1.12.14.bb
+++ b/meta-python/recipes-devtools/python/python3-sh_1.13.1.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/amoffat/sh"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=5317094292296f03405f59ae5f6544b6"
 
-SRC_URI[md5sum] = "a8351aef25d25f707c17e0a7a6280251"
-SRC_URI[sha256sum] = "b52bf5833ed01c7b5c5fb73a7f71b3d98d48e9b9b8764236237bdc7ecae850fc"
+SRC_URI[md5sum] = "7e3dd3a6b49c06db93746994a68cb8cf"
+SRC_URI[sha256sum] = "97a3d2205e3c6a842d87ebbc9ae93acae5a352b1bc4609b428d0fd5bb9e286a3"
 
 PYPI_PACKAGE = "sh"
 
-- 
2.17.1


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

* [meta-python][PATCH 03/11] python3-certifi: Upgrade 2019.11.28 -> 2020.6.20
  2020-06-23  9:51 [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Leon Anavi
  2020-06-23  9:51 ` [meta-python][PATCH 02/11] python3-sh: Upgrade 1.12.14 -> 1.13.1 Leon Anavi
@ 2020-06-23  9:51 ` Leon Anavi
  2020-06-25 13:01   ` [oe] " Trevor Gamblin
  2020-06-23  9:51 ` [meta-python][PATCH 04/11] python3-setuptools-scm: Upgrade 3.5.0 -> 4.1.2 Leon Anavi
                   ` (8 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Leon Anavi @ 2020-06-23  9:51 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2020.6.20:

- Add python3.8 tag on setup.py
- Add a "contents" function that returns the content of the
  cert chain.
- Fix docs URL
- Use resources loader to handle non-filesystem situations
- Fix where() so that it works with importlib.resources when
  available
- Clarify trust origin is Mozilla

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

diff --git a/meta-python/recipes-devtools/python/python3-certifi_2019.11.28.bb b/meta-python/recipes-devtools/python/python3-certifi_2020.6.20.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-certifi_2019.11.28.bb
rename to meta-python/recipes-devtools/python/python3-certifi_2020.6.20.bb
index c9e945f27..817420141 100644
--- a/meta-python/recipes-devtools/python/python3-certifi_2019.11.28.bb
+++ b/meta-python/recipes-devtools/python/python3-certifi_2020.6.20.bb
@@ -7,8 +7,8 @@ HOMEPAGE = " http://certifi.io/"
 LICENSE = "ISC"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=f77f61d14ee6feac4228d3ebd26cc1f1"
 
-SRC_URI[md5sum] = "4d5229c4d9f0a4a79106f9e2c2cfd381"
-SRC_URI[sha256sum] = "25b64c7da4cd7479594d035c08c2d809eb4aab3a26e5a990ea98cc450c320f1f"
+SRC_URI[md5sum] = "89525ece725d674d91b0c43007d2a47e"
+SRC_URI[sha256sum] = "5930595817496dd21bb8dc35dad090f1c2cd0adfaf21204bf6732ca5d8ee34d3"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 04/11] python3-setuptools-scm: Upgrade 3.5.0 -> 4.1.2
  2020-06-23  9:51 [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Leon Anavi
  2020-06-23  9:51 ` [meta-python][PATCH 02/11] python3-sh: Upgrade 1.12.14 -> 1.13.1 Leon Anavi
  2020-06-23  9:51 ` [meta-python][PATCH 03/11] python3-certifi: Upgrade 2019.11.28 -> 2020.6.20 Leon Anavi
@ 2020-06-23  9:51 ` Leon Anavi
  2020-06-25 13:01   ` [oe] " Trevor Gamblin
  2020-06-23  9:51 ` [meta-python][PATCH 05/11] python3-more-itertools: Upgrade 8.3.0 -> 8.4.0 Leon Anavi
                   ` (7 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Leon Anavi @ 2020-06-23  9:51 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 4.1.2:

- disallow git tags without dots by default again
- drop jaraco.windows from pyproject.toml, allows for wheel builds
  on python2
- include python 3.9 via the deadsnakes action
- return release_branch_semver scheme
- undo the devendoring of the samefile backport for python2.7
  on windows
- re-enable the building of universal wheels
- fix handling of missing git/hg on python2.7 (python 3 exceptions
  where used)
- correct the tox flake8 invocation
- trigger builds on tags again
- Add parentdir_project_version to support installs from GitHub
  release tarballs.
- use Coordinated Universal Time (UTC)
- switch to github actions for ci
- fix documentation for tag_regex and add support for single digit
  versions
- document handling of enterprise distros with unsupported
  setuptools versions
- switch to declarative metadata
- drop the internal copy of samefile and use a dependency on
  jaraco.windows on legacy systems
- select git tags based on the presence of numbers instead of dots
- enable getting a version form a parent folder prefix
- add release-branch-semver version scheme
- make global configuration available to version metadata
- drop official support for python 3.4

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

diff --git a/meta-python/recipes-devtools/python/python3-setuptools-scm_3.5.0.bb b/meta-python/recipes-devtools/python/python3-setuptools-scm_4.1.2.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-setuptools-scm_3.5.0.bb
rename to meta-python/recipes-devtools/python/python3-setuptools-scm_4.1.2.bb
index 036477d1e..4ebbac6b6 100644
--- a/meta-python/recipes-devtools/python/python3-setuptools-scm_3.5.0.bb
+++ b/meta-python/recipes-devtools/python/python3-setuptools-scm_4.1.2.bb
@@ -2,8 +2,8 @@ SUMMARY = "the blessed package to manage your versions by scm tags"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
 
-SRC_URI[md5sum] = "86ec1eb9ec02ba018b097787e98897c5"
-SRC_URI[sha256sum] = "5bdf21a05792903cafe7ae0c9501182ab52497614fa6b1750d9dbae7b60c1a87"
+SRC_URI[md5sum] = "e6c9fad17c90516d640868eb833d5150"
+SRC_URI[sha256sum] = "a8994582e716ec690f33fec70cca0f85bd23ec974e3f783233e4879090a7faa8"
 
 PYPI_PACKAGE = "setuptools_scm"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 05/11] python3-more-itertools: Upgrade 8.3.0 -> 8.4.0
  2020-06-23  9:51 [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Leon Anavi
                   ` (2 preceding siblings ...)
  2020-06-23  9:51 ` [meta-python][PATCH 04/11] python3-setuptools-scm: Upgrade 3.5.0 -> 4.1.2 Leon Anavi
@ 2020-06-23  9:51 ` Leon Anavi
  2020-06-25 13:01   ` [oe] " Trevor Gamblin
  2020-06-23  9:51 ` [meta-python][PATCH 06/11] python3-configparser: Upgrade 4.0.2 -> 5.0.0 Leon Anavi
                   ` (6 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Leon Anavi @ 2020-06-23  9:51 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 8.4.0:

- New itertools:
  :func:`mark_ends`
  :func:`is_sorted`
- Changes to existing itertools:
  :func:`islice_extended` can now be used with real slices
  The implementations for :func:`filter_except` and
  :func:`map_except` were improved
- Other changes:
  Automated tests now enforce code style (using black)
  The various signatures of :func:`islice_extended` and
  :func:`numeric_range` now appear in the docs
  The test configuration for mypy was updated

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

diff --git a/meta-python/recipes-devtools/python/python3-more-itertools_8.3.0.bb b/meta-python/recipes-devtools/python/python3-more-itertools_8.4.0.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-more-itertools_8.3.0.bb
rename to meta-python/recipes-devtools/python/python3-more-itertools_8.4.0.bb
index 97393d050..f040b1a97 100644
--- a/meta-python/recipes-devtools/python/python3-more-itertools_8.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-more-itertools_8.4.0.bb
@@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/erikrose/more-itertools"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5"
 
-SRC_URI[md5sum] = "03dbc82ec1c4e814733d84abf79f43f0"
-SRC_URI[sha256sum] = "558bb897a2232f5e4f8e2399089e35aecb746e1f9191b6584a151647e89267be"
+SRC_URI[md5sum] = "0912041c05148ed079984cff69af2e99"
+SRC_URI[sha256sum] = "68c70cc7167bdf5c7c9d8f6954a7837089c6a36bf565383919bb595efb8a17e5"
 
 inherit pypi setuptools3 ptest
 
-- 
2.17.1


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

* [meta-python][PATCH 06/11] python3-configparser: Upgrade 4.0.2 -> 5.0.0
  2020-06-23  9:51 [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Leon Anavi
                   ` (3 preceding siblings ...)
  2020-06-23  9:51 ` [meta-python][PATCH 05/11] python3-more-itertools: Upgrade 8.3.0 -> 8.4.0 Leon Anavi
@ 2020-06-23  9:51 ` Leon Anavi
  2020-06-25 13:01   ` [oe] " Trevor Gamblin
  2020-06-23  9:51 ` [meta-python][PATCH 07/11] python3-pytest-timeout: Upgrade 1.3.4 -> 1.4.1 Leon Anavi
                   ` (5 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Leon Anavi @ 2020-06-23  9:51 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Add toml-native as dependency. Upgrade to release 5.0.0:

- Require Python 3.6 or later. For Python 2.6-3.5, use
  configparser < 5 (selection should be automatic when installed
  using pip 9 from PyPI). The 4.x line remains supported for bug
  fixes but will no longer be updated for future releases.

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

diff --git a/meta-python/recipes-devtools/python/python3-configparser_4.0.2.bb b/meta-python/recipes-devtools/python/python3-configparser_5.0.0.bb
similarity index 68%
rename from meta-python/recipes-devtools/python/python3-configparser_4.0.2.bb
rename to meta-python/recipes-devtools/python/python3-configparser_5.0.0.bb
index 196660925..6b2af125f 100644
--- a/meta-python/recipes-devtools/python/python3-configparser_4.0.2.bb
+++ b/meta-python/recipes-devtools/python/python3-configparser_5.0.0.bb
@@ -5,10 +5,10 @@ LICENSE = "MIT"
 
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=10;endline=10;md5=23f9ad5cad3d8cc0336e2a5d8a87e1fa"
 
-SRC_URI[md5sum] = "35926cc4b9133f1f9ca70a1fd2fdf237"
-SRC_URI[sha256sum] = "c7d282687a5308319bf3d2e7706e575c635b0a470342641c93bea0ea3b5331df"
+SRC_URI[md5sum] = "558114054aa5610365df1b34d3fea349"
+SRC_URI[sha256sum] = "2ca44140ee259b5e3d8aaf47c79c36a7ab0d5e94d70bd4105c03ede7a20ea5a1"
 
-DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
+DEPENDS += "${PYTHON_PN}-setuptools-scm-native ${PYTHON_PN}-toml-native"
 inherit pypi setuptools3
 
 BBCLASSEXTEND = "native nativesdk"
-- 
2.17.1


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

* [meta-python][PATCH 07/11] python3-pytest-timeout: Upgrade 1.3.4 -> 1.4.1
  2020-06-23  9:51 [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Leon Anavi
                   ` (4 preceding siblings ...)
  2020-06-23  9:51 ` [meta-python][PATCH 06/11] python3-configparser: Upgrade 4.0.2 -> 5.0.0 Leon Anavi
@ 2020-06-23  9:51 ` Leon Anavi
  2020-06-25 13:01   ` [oe] " Trevor Gamblin
  2020-06-23  9:51 ` [meta-python][PATCH 08/11] python3-semver: Upgrade 2.8.1 -> 2.10.2 Leon Anavi
                   ` (4 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Leon Anavi @ 2020-06-23  9:51 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.4.1:

- Fix coverage compatibility which was broken by 1.4.0.
- Better detection of when we are debugging.

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

diff --git a/meta-python/recipes-devtools/python/python3-pytest-timeout_1.3.4.bb b/meta-python/recipes-devtools/python/python3-pytest-timeout_1.4.1.bb
similarity index 67%
rename from meta-python/recipes-devtools/python/python3-pytest-timeout_1.3.4.bb
rename to meta-python/recipes-devtools/python/python3-pytest-timeout_1.4.1.bb
index a359969ed..506f4c065 100644
--- a/meta-python/recipes-devtools/python/python3-pytest-timeout_1.3.4.bb
+++ b/meta-python/recipes-devtools/python/python3-pytest-timeout_1.4.1.bb
@@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=d8048cd156eda3df2e7f111b0ae9ceff"
 
 PYPI_PACKAGE = "pytest-timeout"
 
-SRC_URI[md5sum] = "1594762ae77ed7c6c2727aa8b4aa8bfb"
-SRC_URI[sha256sum] = "80faa19cd245a42b87a51699d640c00d937c02b749052bfca6bae8bdbe12c48e"
+SRC_URI[md5sum] = "c458dd7d417a5f2dbae0f1f6073845f7"
+SRC_URI[sha256sum] = "6d0fb4ce74cebb81be252e4e0d9c2a91f30270b33208cfa0f1da6eed9abf18ac"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 08/11] python3-semver: Upgrade 2.8.1 -> 2.10.2
  2020-06-23  9:51 [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Leon Anavi
                   ` (5 preceding siblings ...)
  2020-06-23  9:51 ` [meta-python][PATCH 07/11] python3-pytest-timeout: Upgrade 1.3.4 -> 1.4.1 Leon Anavi
@ 2020-06-23  9:51 ` Leon Anavi
  2020-06-25 13:02   ` [oe] " Trevor Gamblin
  2020-06-23  9:51 ` [meta-python][PATCH 09/11] python3-spidev: Upgrade 3.4 -> 3.5 Leon Anavi
                   ` (3 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Leon Anavi @ 2020-06-23  9:51 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.10.2:

- :gh:`268`: Increase coverage
- :gh:`260` (:pr:`261`): Fixed __getitem__ returning None on
  wrong parts :pr:`263`: Doc: Add missing "install" subcommand
  for openSUSE

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

diff --git a/meta-python/recipes-devtools/python/python3-semver_2.8.1.bb b/meta-python/recipes-devtools/python/python3-semver_2.10.2.bb
similarity index 71%
rename from meta-python/recipes-devtools/python/python3-semver_2.8.1.bb
rename to meta-python/recipes-devtools/python/python3-semver_2.10.2.bb
index a469b23b1..b41ef5ddc 100644
--- a/meta-python/recipes-devtools/python/python3-semver_2.8.1.bb
+++ b/meta-python/recipes-devtools/python/python3-semver_2.10.2.bb
@@ -4,8 +4,8 @@ BUGTRACKER = "https://github.com/k-bx/python-semver/issues"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665b9a75d6afb7709"
 
-SRC_URI[md5sum] = "dc579ba9d0bb2137bad5324d4bdb7e40"
-SRC_URI[sha256sum] = "5b09010a66d9a3837211bb7ae5a20d10ba88f8cb49e92cb139a69ef90d5060d8"
+SRC_URI[md5sum] = "3e11ae9782121e8ffe9f8a8b763a8cb5"
+SRC_URI[sha256sum] = "c0a4a9d1e45557297a722ee9bac3de2ec2ea79016b6ffcaca609b0bc62cf4276"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 09/11] python3-spidev: Upgrade 3.4 -> 3.5
  2020-06-23  9:51 [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Leon Anavi
                   ` (6 preceding siblings ...)
  2020-06-23  9:51 ` [meta-python][PATCH 08/11] python3-semver: Upgrade 2.8.1 -> 2.10.2 Leon Anavi
@ 2020-06-23  9:51 ` Leon Anavi
  2020-06-25 13:02   ` [oe] " Trevor Gamblin
  2020-06-23  9:51 ` [meta-python][PATCH 10/11] python3-pint: Upgrade 0.12 -> 0.13 Leon Anavi
                   ` (2 subsequent siblings)
  10 siblings, 1 reply; 22+ messages in thread
From: Leon Anavi @ 2020-06-23  9:51 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.5:

- Fixed memory leaks

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

diff --git a/meta-python/recipes-devtools/python/python3-spidev_3.4.bb b/meta-python/recipes-devtools/python/python3-spidev_3.5.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-spidev_3.4.bb
rename to meta-python/recipes-devtools/python/python3-spidev_3.5.bb
index 334d658d6..ca5a1eb52 100644
--- a/meta-python/recipes-devtools/python/python3-spidev_3.4.bb
+++ b/meta-python/recipes-devtools/python/python3-spidev_3.5.bb
@@ -10,7 +10,7 @@ LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
 SRCNAME = "spidev"
 
-SRC_URI[md5sum] = "bbab6352449f1d572cc9eefeafc58bd1"
-SRC_URI[sha256sum] = "4314e52f573d95233c907f307558893313a8a606e197e77bb711526b0e179e80"
+SRC_URI[md5sum] = "7007e4fff2750025e233d8dfe46be670"
+SRC_URI[sha256sum] = "8a7f5c289f161ea2ac4697fa8a10918232c990678dd0053084b3c43b1363910d"
 
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 10/11] python3-pint: Upgrade 0.12 -> 0.13
  2020-06-23  9:51 [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Leon Anavi
                   ` (7 preceding siblings ...)
  2020-06-23  9:51 ` [meta-python][PATCH 09/11] python3-spidev: Upgrade 3.4 -> 3.5 Leon Anavi
@ 2020-06-23  9:51 ` Leon Anavi
  2020-06-25 13:02   ` [oe] " Trevor Gamblin
  2020-06-23  9:51 ` [meta-python][PATCH 11/11] python3-xxhash: Upgrade 1.4.3 -> 1.4.4 Leon Anavi
  2020-06-25 13:00 ` [oe] [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Trevor Gamblin
  10 siblings, 1 reply; 22+ messages in thread
From: Leon Anavi @ 2020-06-23  9:51 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.13:

- Reinstated support for pickle protocol 0 and 1, which is
  required by pytables
- Fixed bug with multiplication of Quantity by dict
- Bare zeros and NaNs (not wrapped by Quantity) are now gracefully
  accepted by all numpy operations; e.g. np.stack
  ([Quantity([1, 2], "m"), [0, np.nan]) is now valid, whereas
  np.stack([Quantity([1, 2], "m"), [3, 4]) will continue raising
  DimensionalityError.
- NaN is now treated the same as zero in addition, subtraction,
  equality, and disequality
- Fixed issue where quantities with a very large magnitude would
  throw an IndexError when using to_compact()
- Fixed crash when a Unit with prefix is declared for the first
  time while a Context containing unit redefinitions is active
- New implementation of 'Lx' String Format Type Option
  The old implementation treated 'Lx' as 'S' as produced by
  'uncertainties' package, but that is not fully compatible with
  SIunitx. The new code protects SIunitx by fixing what
  unceratinties produces.
- Added link to budding `pint-xarray` interface library to the
  docs, next to the link to pint-pandas.
- Removed outdated `_dir` attribute of `UnitsRegistry`, and added
  `__iter__` method so that now `list(ureg)` returns a list of
  all units in registry.
- Replace pkg_resources.version to importlib.metadata.version.
- Fix typo in docs for wraps example with optional arguments.
- Add momentum as a dimension
- Fixed a bug where unit exponents were only partially
  superscripted in HTML format
- Multiple contexts containing the same redefinition can now be
  stacked
- Fixed crash when some specific combinations of contexts were
  enabled
- Added support for checking prefixed units using `in` keyword
- Updated many examples in the documentation to reflect Pint's
  current behavior

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

diff --git a/meta-python/recipes-devtools/python/python3-pint_0.12.bb b/meta-python/recipes-devtools/python/python3-pint_0.13.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-pint_0.12.bb
rename to meta-python/recipes-devtools/python/python3-pint_0.13.bb
index 626af0554..9a081baba 100644
--- a/meta-python/recipes-devtools/python/python3-pint_0.12.bb
+++ b/meta-python/recipes-devtools/python/python3-pint_0.13.bb
@@ -10,8 +10,8 @@ PYPI_PACKAGE := "Pint"
 
 inherit pypi ptest setuptools3
 
-SRC_URI[md5sum] = "0af699bc0ccdff56228b4a81216b4f7d"
-SRC_URI[sha256sum] = "dc899061f9dc478e0aac3b0d872ca33d120efd32c382984818adab3522b6c793"
+SRC_URI[md5sum] = "6e60d42736f8175a57119aecc383fe4b"
+SRC_URI[sha256sum] = "13fa35ffa3ddf53161b4304917085687950e0de461bcdd4d65cdee11a43d7fb2"
 
 DEPENDS += "python3-setuptools-scm-native"
 
-- 
2.17.1


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

* [meta-python][PATCH 11/11] python3-xxhash: Upgrade 1.4.3 -> 1.4.4
  2020-06-23  9:51 [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Leon Anavi
                   ` (8 preceding siblings ...)
  2020-06-23  9:51 ` [meta-python][PATCH 10/11] python3-pint: Upgrade 0.12 -> 0.13 Leon Anavi
@ 2020-06-23  9:51 ` Leon Anavi
  2020-06-25 13:18   ` [oe] " Trevor Gamblin
  2020-06-25 13:00 ` [oe] [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Trevor Gamblin
  10 siblings, 1 reply; 22+ messages in thread
From: Leon Anavi @ 2020-06-23  9:51 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.4.4:

- Upgrade xxHash to v0.7.3
- Stop using PEP393 deprecated APIs
- Use XXH(32|64)_canonicalFromHash to replace u2bytes and
  ull2bytes

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

diff --git a/meta-python/recipes-devtools/python/python3-xxhash_1.4.3.bb b/meta-python/recipes-devtools/python/python3-xxhash_1.4.4.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-xxhash_1.4.3.bb
rename to meta-python/recipes-devtools/python/python3-xxhash_1.4.4.bb
index c114a6c8b..97f4e358b 100644
--- a/meta-python/recipes-devtools/python/python3-xxhash_1.4.3.bb
+++ b/meta-python/recipes-devtools/python/python3-xxhash_1.4.4.bb
@@ -3,8 +3,8 @@ SECTION = "devel/python"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=5a8d76283514a1b7e6a414aba38629b5"
 
-SRC_URI[md5sum] = "ce9cbbcc89620fd47a2468badd08dcf0"
-SRC_URI[sha256sum] = "8b6b1afe7731d7d9cbb0398b4a811ebb5e6be5c174f72c68abf81f919a435de9"
+SRC_URI[md5sum] = "0194cc926dd7676d27aba0f89da9798b"
+SRC_URI[sha256sum] = "7d6df9d217977d085b8abd74b61efa40405ac416f2d8bdacc40826bd5cb1b746"
 
 SRC_URI += " \
     file://run-ptest \
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17
  2020-06-23  9:51 [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Leon Anavi
                   ` (9 preceding siblings ...)
  2020-06-23  9:51 ` [meta-python][PATCH 11/11] python3-xxhash: Upgrade 1.4.3 -> 1.4.4 Leon Anavi
@ 2020-06-25 13:00 ` Trevor Gamblin
  10 siblings, 0 replies; 22+ messages in thread
From: Trevor Gamblin @ 2020-06-25 13:00 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/23/20 5:51 AM, Leon Anavi wrote:
> Upgrade to release 1.3.17:
>
> - orm Bug fixes
> - orm Added an accessor ColumnProperty.Comparator.expressions
>    which provides access to the group of columns mapped under a
>    multi-column ColumnProperty attribute.
> - orm Introduce _orm.relationship.sync_backref flag in a
>    relationship to control if the synchronization events that
>    mutate the in-Python attributes are added. This supersedes the
>    previous change #5149, which warned that viewonly=True
>    relationship target of a back_populates or backref configuration
>    would be disallowed.
> - engine Bug fixes
> - schema Bug fixes
> - schema Add comment attribute to _schema.Column __repr__ method.
>
> The year in LICENSE has been updated so LIC_FILES_CHKSUM was
> changed.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...n3-sqlalchemy_1.3.12.bb => python3-sqlalchemy_1.3.17.bb} | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-sqlalchemy_1.3.12.bb => python3-sqlalchemy_1.3.17.bb} (67%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.12.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.17.bb
> similarity index 67%
> rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.12.bb
> rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.17.bb
> index e29b572cb..b9c58e5b6 100644
> --- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.12.bb
> +++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.17.bb
> @@ -2,10 +2,10 @@ DESCRIPTION = "Python SQL toolkit and Object Relational Mapper that gives \
>   application developers the full power and flexibility of SQL"
>   HOMEPAGE = "http://www.sqlalchemy.org/"
>   LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=2f5eb030c48975d5294baf0f5d01af1c"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=c19467890539ff718c00a019c9c7a7b2"
>   
> -SRC_URI[md5sum] = "02a46be841903b60c52a83342d3ced8e"
> -SRC_URI[sha256sum] = "bfb8f464a5000b567ac1d350b9090cf081180ec1ab4aa87e7bca12dab25320ec"
> +SRC_URI[md5sum] = "478214152b9293bf5652815d7312c890"
> +SRC_URI[sha256sum] = "156a27548ba4e1fed944ff9fcdc150633e61d350d673ae7baaf6c25c04ac1f71"
>   
>   PYPI_PACKAGE = "SQLAlchemy"
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 02/11] python3-sh: Upgrade 1.12.14 -> 1.13.1
  2020-06-23  9:51 ` [meta-python][PATCH 02/11] python3-sh: Upgrade 1.12.14 -> 1.13.1 Leon Anavi
@ 2020-06-25 13:00   ` Trevor Gamblin
  0 siblings, 0 replies; 22+ messages in thread
From: Trevor Gamblin @ 2020-06-25 13:00 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/23/20 5:51 AM, Leon Anavi wrote:
> Upgrade to release 1.13.1:
>
> - regression fix if _fg=False
> - minor Travis CI fixes
> - bugfix for boolean long options not respecting _long_prefix
> - fix deprecation warning on Python 3.6 regexes
> - _pass_fds and _close_fds special kwargs for controlling file
>    descriptor inheritance in child.
> - more efficiently closing inherited fds
> - bugfix where passing invalid dictionary to _env will cause a
>    mysterious child 255 exit code.
> - bugfix where _in using 0 or sys.stdin wasn't behaving like a
>    TTY, if it was in fact a TTY.
> - bugfix where help(sh) raised an exception
> - bugfix fixing broken interactive ssh tutorial from docs
> - change to automatic tty merging into a single pty if
>    _tty_in=True and _tty_out=True
> - introducing _unify_ttys, default False, which allows explicit
>    tty merging into single pty
> - contrib command for ssh connections requiring passwords
> - performance fix for polling output too fast when using _iter
> - execution contexts can now be used in python shell
> - bugfix ErrorReturnCode instances can now be pickled
> - bugfix passing empty string or None for _in hanged
> - bugfix where passing a filename or file-like object to _out
>    wasn't using os.dup2
> - regression make _fg work with _cwd again
> - an invalid _cwd now raises a ForkException not an OSError.
> - AIX support
> - added a timeout=None param to RunningCommand.wait()
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-sh_1.12.14.bb => python3-sh_1.13.1.bb}    | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-sh_1.12.14.bb => python3-sh_1.13.1.bb} (78%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-sh_1.12.14.bb b/meta-python/recipes-devtools/python/python3-sh_1.13.1.bb
> similarity index 78%
> rename from meta-python/recipes-devtools/python/python3-sh_1.12.14.bb
> rename to meta-python/recipes-devtools/python/python3-sh_1.13.1.bb
> index b7858734b..2a6d9bcc6 100644
> --- a/meta-python/recipes-devtools/python/python3-sh_1.12.14.bb
> +++ b/meta-python/recipes-devtools/python/python3-sh_1.13.1.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/amoffat/sh"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=5317094292296f03405f59ae5f6544b6"
>   
> -SRC_URI[md5sum] = "a8351aef25d25f707c17e0a7a6280251"
> -SRC_URI[sha256sum] = "b52bf5833ed01c7b5c5fb73a7f71b3d98d48e9b9b8764236237bdc7ecae850fc"
> +SRC_URI[md5sum] = "7e3dd3a6b49c06db93746994a68cb8cf"
> +SRC_URI[sha256sum] = "97a3d2205e3c6a842d87ebbc9ae93acae5a352b1bc4609b428d0fd5bb9e286a3"
>   
>   PYPI_PACKAGE = "sh"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 03/11] python3-certifi: Upgrade 2019.11.28 -> 2020.6.20
  2020-06-23  9:51 ` [meta-python][PATCH 03/11] python3-certifi: Upgrade 2019.11.28 -> 2020.6.20 Leon Anavi
@ 2020-06-25 13:01   ` Trevor Gamblin
  0 siblings, 0 replies; 22+ messages in thread
From: Trevor Gamblin @ 2020-06-25 13:01 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/23/20 5:51 AM, Leon Anavi wrote:
> Upgrade to release 2020.6.20:
>
> - Add python3.8 tag on setup.py
> - Add a "contents" function that returns the content of the
>    cert chain.
> - Fix docs URL
> - Use resources loader to handle non-filesystem situations
> - Fix where() so that it works with importlib.resources when
>    available
> - Clarify trust origin is Mozilla
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...on3-certifi_2019.11.28.bb => python3-certifi_2020.6.20.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-certifi_2019.11.28.bb => python3-certifi_2020.6.20.bb} (79%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-certifi_2019.11.28.bb b/meta-python/recipes-devtools/python/python3-certifi_2020.6.20.bb
> similarity index 79%
> rename from meta-python/recipes-devtools/python/python3-certifi_2019.11.28.bb
> rename to meta-python/recipes-devtools/python/python3-certifi_2020.6.20.bb
> index c9e945f27..817420141 100644
> --- a/meta-python/recipes-devtools/python/python3-certifi_2019.11.28.bb
> +++ b/meta-python/recipes-devtools/python/python3-certifi_2020.6.20.bb
> @@ -7,8 +7,8 @@ HOMEPAGE = " http://certifi.io/"
>   LICENSE = "ISC"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=f77f61d14ee6feac4228d3ebd26cc1f1"
>   
> -SRC_URI[md5sum] = "4d5229c4d9f0a4a79106f9e2c2cfd381"
> -SRC_URI[sha256sum] = "25b64c7da4cd7479594d035c08c2d809eb4aab3a26e5a990ea98cc450c320f1f"
> +SRC_URI[md5sum] = "89525ece725d674d91b0c43007d2a47e"
> +SRC_URI[sha256sum] = "5930595817496dd21bb8dc35dad090f1c2cd0adfaf21204bf6732ca5d8ee34d3"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 04/11] python3-setuptools-scm: Upgrade 3.5.0 -> 4.1.2
  2020-06-23  9:51 ` [meta-python][PATCH 04/11] python3-setuptools-scm: Upgrade 3.5.0 -> 4.1.2 Leon Anavi
@ 2020-06-25 13:01   ` Trevor Gamblin
  0 siblings, 0 replies; 22+ messages in thread
From: Trevor Gamblin @ 2020-06-25 13:01 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/23/20 5:51 AM, Leon Anavi wrote:
> Upgrade to release 4.1.2:
>
> - disallow git tags without dots by default again
> - drop jaraco.windows from pyproject.toml, allows for wheel builds
>    on python2
> - include python 3.9 via the deadsnakes action
> - return release_branch_semver scheme
> - undo the devendoring of the samefile backport for python2.7
>    on windows
> - re-enable the building of universal wheels
> - fix handling of missing git/hg on python2.7 (python 3 exceptions
>    where used)
> - correct the tox flake8 invocation
> - trigger builds on tags again
> - Add parentdir_project_version to support installs from GitHub
>    release tarballs.
> - use Coordinated Universal Time (UTC)
> - switch to github actions for ci
> - fix documentation for tag_regex and add support for single digit
>    versions
> - document handling of enterprise distros with unsupported
>    setuptools versions
> - switch to declarative metadata
> - drop the internal copy of samefile and use a dependency on
>    jaraco.windows on legacy systems
> - select git tags based on the presence of numbers instead of dots
> - enable getting a version form a parent folder prefix
> - add release-branch-semver version scheme
> - make global configuration available to version metadata
> - drop official support for python 3.4
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...etuptools-scm_3.5.0.bb => python3-setuptools-scm_4.1.2.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-setuptools-scm_3.5.0.bb => python3-setuptools-scm_4.1.2.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-setuptools-scm_3.5.0.bb b/meta-python/recipes-devtools/python/python3-setuptools-scm_4.1.2.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-setuptools-scm_3.5.0.bb
> rename to meta-python/recipes-devtools/python/python3-setuptools-scm_4.1.2.bb
> index 036477d1e..4ebbac6b6 100644
> --- a/meta-python/recipes-devtools/python/python3-setuptools-scm_3.5.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-setuptools-scm_4.1.2.bb
> @@ -2,8 +2,8 @@ SUMMARY = "the blessed package to manage your versions by scm tags"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=8227180126797a0148f94f483f3e1489"
>   
> -SRC_URI[md5sum] = "86ec1eb9ec02ba018b097787e98897c5"
> -SRC_URI[sha256sum] = "5bdf21a05792903cafe7ae0c9501182ab52497614fa6b1750d9dbae7b60c1a87"
> +SRC_URI[md5sum] = "e6c9fad17c90516d640868eb833d5150"
> +SRC_URI[sha256sum] = "a8994582e716ec690f33fec70cca0f85bd23ec974e3f783233e4879090a7faa8"
>   
>   PYPI_PACKAGE = "setuptools_scm"
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 05/11] python3-more-itertools: Upgrade 8.3.0 -> 8.4.0
  2020-06-23  9:51 ` [meta-python][PATCH 05/11] python3-more-itertools: Upgrade 8.3.0 -> 8.4.0 Leon Anavi
@ 2020-06-25 13:01   ` Trevor Gamblin
  0 siblings, 0 replies; 22+ messages in thread
From: Trevor Gamblin @ 2020-06-25 13:01 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/23/20 5:51 AM, Leon Anavi wrote:
> Upgrade to release 8.4.0:
>
> - New itertools:
>    :func:`mark_ends`
>    :func:`is_sorted`
> - Changes to existing itertools:
>    :func:`islice_extended` can now be used with real slices
>    The implementations for :func:`filter_except` and
>    :func:`map_except` were improved
> - Other changes:
>    Automated tests now enforce code style (using black)
>    The various signatures of :func:`islice_extended` and
>    :func:`numeric_range` now appear in the docs
>    The test configuration for mypy was updated
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...ore-itertools_8.3.0.bb => python3-more-itertools_8.4.0.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-more-itertools_8.3.0.bb => python3-more-itertools_8.4.0.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-more-itertools_8.3.0.bb b/meta-python/recipes-devtools/python/python3-more-itertools_8.4.0.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-more-itertools_8.3.0.bb
> rename to meta-python/recipes-devtools/python/python3-more-itertools_8.4.0.bb
> index 97393d050..f040b1a97 100644
> --- a/meta-python/recipes-devtools/python/python3-more-itertools_8.3.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-more-itertools_8.4.0.bb
> @@ -3,8 +3,8 @@ HOMEPAGE = "https://github.com/erikrose/more-itertools"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=3396ea30f9d21389d7857719816f83b5"
>   
> -SRC_URI[md5sum] = "03dbc82ec1c4e814733d84abf79f43f0"
> -SRC_URI[sha256sum] = "558bb897a2232f5e4f8e2399089e35aecb746e1f9191b6584a151647e89267be"
> +SRC_URI[md5sum] = "0912041c05148ed079984cff69af2e99"
> +SRC_URI[sha256sum] = "68c70cc7167bdf5c7c9d8f6954a7837089c6a36bf565383919bb595efb8a17e5"
>   
>   inherit pypi setuptools3 ptest
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 06/11] python3-configparser: Upgrade 4.0.2 -> 5.0.0
  2020-06-23  9:51 ` [meta-python][PATCH 06/11] python3-configparser: Upgrade 4.0.2 -> 5.0.0 Leon Anavi
@ 2020-06-25 13:01   ` Trevor Gamblin
  0 siblings, 0 replies; 22+ messages in thread
From: Trevor Gamblin @ 2020-06-25 13:01 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/23/20 5:51 AM, Leon Anavi wrote:
> Add toml-native as dependency. Upgrade to release 5.0.0:
>
> - Require Python 3.6 or later. For Python 2.6-3.5, use
>    configparser < 5 (selection should be automatic when installed
>    using pip 9 from PyPI). The 4.x line remains supported for bug
>    fixes but will no longer be updated for future releases.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...-configparser_4.0.2.bb => python3-configparser_5.0.0.bb} | 6 +++---
>   1 file changed, 3 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-configparser_4.0.2.bb => python3-configparser_5.0.0.bb} (68%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-configparser_4.0.2.bb b/meta-python/recipes-devtools/python/python3-configparser_5.0.0.bb
> similarity index 68%
> rename from meta-python/recipes-devtools/python/python3-configparser_4.0.2.bb
> rename to meta-python/recipes-devtools/python/python3-configparser_5.0.0.bb
> index 196660925..6b2af125f 100644
> --- a/meta-python/recipes-devtools/python/python3-configparser_4.0.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-configparser_5.0.0.bb
> @@ -5,10 +5,10 @@ LICENSE = "MIT"
>   
>   LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=10;endline=10;md5=23f9ad5cad3d8cc0336e2a5d8a87e1fa"
>   
> -SRC_URI[md5sum] = "35926cc4b9133f1f9ca70a1fd2fdf237"
> -SRC_URI[sha256sum] = "c7d282687a5308319bf3d2e7706e575c635b0a470342641c93bea0ea3b5331df"
> +SRC_URI[md5sum] = "558114054aa5610365df1b34d3fea349"
> +SRC_URI[sha256sum] = "2ca44140ee259b5e3d8aaf47c79c36a7ab0d5e94d70bd4105c03ede7a20ea5a1"
>   
> -DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
> +DEPENDS += "${PYTHON_PN}-setuptools-scm-native ${PYTHON_PN}-toml-native"
>   inherit pypi setuptools3
>   
>   BBCLASSEXTEND = "native nativesdk"
>
> 

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

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

* Re: [oe] [meta-python][PATCH 07/11] python3-pytest-timeout: Upgrade 1.3.4 -> 1.4.1
  2020-06-23  9:51 ` [meta-python][PATCH 07/11] python3-pytest-timeout: Upgrade 1.3.4 -> 1.4.1 Leon Anavi
@ 2020-06-25 13:01   ` Trevor Gamblin
  0 siblings, 0 replies; 22+ messages in thread
From: Trevor Gamblin @ 2020-06-25 13:01 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/23/20 5:51 AM, Leon Anavi wrote:
> Upgrade to release 1.4.1:
>
> - Fix coverage compatibility which was broken by 1.4.0.
> - Better detection of when we are debugging.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...ytest-timeout_1.3.4.bb => python3-pytest-timeout_1.4.1.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pytest-timeout_1.3.4.bb => python3-pytest-timeout_1.4.1.bb} (67%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pytest-timeout_1.3.4.bb b/meta-python/recipes-devtools/python/python3-pytest-timeout_1.4.1.bb
> similarity index 67%
> rename from meta-python/recipes-devtools/python/python3-pytest-timeout_1.3.4.bb
> rename to meta-python/recipes-devtools/python/python3-pytest-timeout_1.4.1.bb
> index a359969ed..506f4c065 100644
> --- a/meta-python/recipes-devtools/python/python3-pytest-timeout_1.3.4.bb
> +++ b/meta-python/recipes-devtools/python/python3-pytest-timeout_1.4.1.bb
> @@ -5,8 +5,8 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=d8048cd156eda3df2e7f111b0ae9ceff"
>   
>   PYPI_PACKAGE = "pytest-timeout"
>   
> -SRC_URI[md5sum] = "1594762ae77ed7c6c2727aa8b4aa8bfb"
> -SRC_URI[sha256sum] = "80faa19cd245a42b87a51699d640c00d937c02b749052bfca6bae8bdbe12c48e"
> +SRC_URI[md5sum] = "c458dd7d417a5f2dbae0f1f6073845f7"
> +SRC_URI[sha256sum] = "6d0fb4ce74cebb81be252e4e0d9c2a91f30270b33208cfa0f1da6eed9abf18ac"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 08/11] python3-semver: Upgrade 2.8.1 -> 2.10.2
  2020-06-23  9:51 ` [meta-python][PATCH 08/11] python3-semver: Upgrade 2.8.1 -> 2.10.2 Leon Anavi
@ 2020-06-25 13:02   ` Trevor Gamblin
  0 siblings, 0 replies; 22+ messages in thread
From: Trevor Gamblin @ 2020-06-25 13:02 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/23/20 5:51 AM, Leon Anavi wrote:
> Upgrade to release 2.10.2:
>
> - :gh:`268`: Increase coverage
> - :gh:`260` (:pr:`261`): Fixed __getitem__ returning None on
>    wrong parts :pr:`263`: Doc: Add missing "install" subcommand
>    for openSUSE
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-semver_2.8.1.bb => python3-semver_2.10.2.bb}     | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-semver_2.8.1.bb => python3-semver_2.10.2.bb} (71%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-semver_2.8.1.bb b/meta-python/recipes-devtools/python/python3-semver_2.10.2.bb
> similarity index 71%
> rename from meta-python/recipes-devtools/python/python3-semver_2.8.1.bb
> rename to meta-python/recipes-devtools/python/python3-semver_2.10.2.bb
> index a469b23b1..b41ef5ddc 100644
> --- a/meta-python/recipes-devtools/python/python3-semver_2.8.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-semver_2.10.2.bb
> @@ -4,8 +4,8 @@ BUGTRACKER = "https://github.com/k-bx/python-semver/issues"
>   LICENSE = "BSD-3-Clause"
>   LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=e910b35b0ef4e1f665b9a75d6afb7709"
>   
> -SRC_URI[md5sum] = "dc579ba9d0bb2137bad5324d4bdb7e40"
> -SRC_URI[sha256sum] = "5b09010a66d9a3837211bb7ae5a20d10ba88f8cb49e92cb139a69ef90d5060d8"
> +SRC_URI[md5sum] = "3e11ae9782121e8ffe9f8a8b763a8cb5"
> +SRC_URI[sha256sum] = "c0a4a9d1e45557297a722ee9bac3de2ec2ea79016b6ffcaca609b0bc62cf4276"
>   
>   inherit pypi setuptools3
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 09/11] python3-spidev: Upgrade 3.4 -> 3.5
  2020-06-23  9:51 ` [meta-python][PATCH 09/11] python3-spidev: Upgrade 3.4 -> 3.5 Leon Anavi
@ 2020-06-25 13:02   ` Trevor Gamblin
  0 siblings, 0 replies; 22+ messages in thread
From: Trevor Gamblin @ 2020-06-25 13:02 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/23/20 5:51 AM, Leon Anavi wrote:
> Upgrade to release 3.5:
>
> - Fixed memory leaks
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-spidev_3.4.bb => python3-spidev_3.5.bb}   | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-spidev_3.4.bb => python3-spidev_3.5.bb} (82%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-spidev_3.4.bb b/meta-python/recipes-devtools/python/python3-spidev_3.5.bb
> similarity index 82%
> rename from meta-python/recipes-devtools/python/python3-spidev_3.4.bb
> rename to meta-python/recipes-devtools/python/python3-spidev_3.5.bb
> index 334d658d6..ca5a1eb52 100644
> --- a/meta-python/recipes-devtools/python/python3-spidev_3.4.bb
> +++ b/meta-python/recipes-devtools/python/python3-spidev_3.5.bb
> @@ -10,7 +10,7 @@ LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://${COREBASE}/meta/files/common-licenses/MIT;md5=0835ade698e0bcf8506ecda2f7b4f302"
>   SRCNAME = "spidev"
>   
> -SRC_URI[md5sum] = "bbab6352449f1d572cc9eefeafc58bd1"
> -SRC_URI[sha256sum] = "4314e52f573d95233c907f307558893313a8a606e197e77bb711526b0e179e80"
> +SRC_URI[md5sum] = "7007e4fff2750025e233d8dfe46be670"
> +SRC_URI[sha256sum] = "8a7f5c289f161ea2ac4697fa8a10918232c990678dd0053084b3c43b1363910d"
>   
>   inherit pypi setuptools3
>
> 

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

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

* Re: [oe] [meta-python][PATCH 10/11] python3-pint: Upgrade 0.12 -> 0.13
  2020-06-23  9:51 ` [meta-python][PATCH 10/11] python3-pint: Upgrade 0.12 -> 0.13 Leon Anavi
@ 2020-06-25 13:02   ` Trevor Gamblin
  0 siblings, 0 replies; 22+ messages in thread
From: Trevor Gamblin @ 2020-06-25 13:02 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/23/20 5:51 AM, Leon Anavi wrote:
> Upgrade to release 0.13:
>
> - Reinstated support for pickle protocol 0 and 1, which is
>    required by pytables
> - Fixed bug with multiplication of Quantity by dict
> - Bare zeros and NaNs (not wrapped by Quantity) are now gracefully
>    accepted by all numpy operations; e.g. np.stack
>    ([Quantity([1, 2], "m"), [0, np.nan]) is now valid, whereas
>    np.stack([Quantity([1, 2], "m"), [3, 4]) will continue raising
>    DimensionalityError.
> - NaN is now treated the same as zero in addition, subtraction,
>    equality, and disequality
> - Fixed issue where quantities with a very large magnitude would
>    throw an IndexError when using to_compact()
> - Fixed crash when a Unit with prefix is declared for the first
>    time while a Context containing unit redefinitions is active
> - New implementation of 'Lx' String Format Type Option
>    The old implementation treated 'Lx' as 'S' as produced by
>    'uncertainties' package, but that is not fully compatible with
>    SIunitx. The new code protects SIunitx by fixing what
>    unceratinties produces.
> - Added link to budding `pint-xarray` interface library to the
>    docs, next to the link to pint-pandas.
> - Removed outdated `_dir` attribute of `UnitsRegistry`, and added
>    `__iter__` method so that now `list(ureg)` returns a list of
>    all units in registry.
> - Replace pkg_resources.version to importlib.metadata.version.
> - Fix typo in docs for wraps example with optional arguments.
> - Add momentum as a dimension
> - Fixed a bug where unit exponents were only partially
>    superscripted in HTML format
> - Multiple contexts containing the same redefinition can now be
>    stacked
> - Fixed crash when some specific combinations of contexts were
>    enabled
> - Added support for checking prefixed units using `in` keyword
> - Updated many examples in the documentation to reflect Pint's
>    current behavior
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-pint_0.12.bb => python3-pint_0.13.bb}     | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pint_0.12.bb => python3-pint_0.13.bb} (81%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pint_0.12.bb b/meta-python/recipes-devtools/python/python3-pint_0.13.bb
> similarity index 81%
> rename from meta-python/recipes-devtools/python/python3-pint_0.12.bb
> rename to meta-python/recipes-devtools/python/python3-pint_0.13.bb
> index 626af0554..9a081baba 100644
> --- a/meta-python/recipes-devtools/python/python3-pint_0.12.bb
> +++ b/meta-python/recipes-devtools/python/python3-pint_0.13.bb
> @@ -10,8 +10,8 @@ PYPI_PACKAGE := "Pint"
>   
>   inherit pypi ptest setuptools3
>   
> -SRC_URI[md5sum] = "0af699bc0ccdff56228b4a81216b4f7d"
> -SRC_URI[sha256sum] = "dc899061f9dc478e0aac3b0d872ca33d120efd32c382984818adab3522b6c793"
> +SRC_URI[md5sum] = "6e60d42736f8175a57119aecc383fe4b"
> +SRC_URI[sha256sum] = "13fa35ffa3ddf53161b4304917085687950e0de461bcdd4d65cdee11a43d7fb2"
>   
>   DEPENDS += "python3-setuptools-scm-native"
>   
>
> 

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

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

* Re: [oe] [meta-python][PATCH 11/11] python3-xxhash: Upgrade 1.4.3 -> 1.4.4
  2020-06-23  9:51 ` [meta-python][PATCH 11/11] python3-xxhash: Upgrade 1.4.3 -> 1.4.4 Leon Anavi
@ 2020-06-25 13:18   ` Trevor Gamblin
  0 siblings, 0 replies; 22+ messages in thread
From: Trevor Gamblin @ 2020-06-25 13:18 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 6/23/20 5:51 AM, Leon Anavi wrote:
> Upgrade to release 1.4.4:
>
> - Upgrade xxHash to v0.7.3
> - Stop using PEP393 deprecated APIs
> - Use XXH(32|64)_canonicalFromHash to replace u2bytes and
>    ull2bytes
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-xxhash_1.4.3.bb => python3-xxhash_1.4.4.bb}      | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-xxhash_1.4.3.bb => python3-xxhash_1.4.4.bb} (75%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-xxhash_1.4.3.bb b/meta-python/recipes-devtools/python/python3-xxhash_1.4.4.bb
> similarity index 75%
> rename from meta-python/recipes-devtools/python/python3-xxhash_1.4.3.bb
> rename to meta-python/recipes-devtools/python/python3-xxhash_1.4.4.bb
> index c114a6c8b..97f4e358b 100644
> --- a/meta-python/recipes-devtools/python/python3-xxhash_1.4.3.bb
> +++ b/meta-python/recipes-devtools/python/python3-xxhash_1.4.4.bb
> @@ -3,8 +3,8 @@ SECTION = "devel/python"
>   LICENSE = "BSD-2-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=5a8d76283514a1b7e6a414aba38629b5"
>   
> -SRC_URI[md5sum] = "ce9cbbcc89620fd47a2468badd08dcf0"
> -SRC_URI[sha256sum] = "8b6b1afe7731d7d9cbb0398b4a811ebb5e6be5c174f72c68abf81f919a435de9"
> +SRC_URI[md5sum] = "0194cc926dd7676d27aba0f89da9798b"
> +SRC_URI[sha256sum] = "7d6df9d217977d085b8abd74b61efa40405ac416f2d8bdacc40826bd5cb1b746"
>   
>   SRC_URI += " \
>       file://run-ptest \
>
> 

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

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

end of thread, other threads:[~2020-06-25 13:18 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-06-23  9:51 [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 Leon Anavi
2020-06-23  9:51 ` [meta-python][PATCH 02/11] python3-sh: Upgrade 1.12.14 -> 1.13.1 Leon Anavi
2020-06-25 13:00   ` [oe] " Trevor Gamblin
2020-06-23  9:51 ` [meta-python][PATCH 03/11] python3-certifi: Upgrade 2019.11.28 -> 2020.6.20 Leon Anavi
2020-06-25 13:01   ` [oe] " Trevor Gamblin
2020-06-23  9:51 ` [meta-python][PATCH 04/11] python3-setuptools-scm: Upgrade 3.5.0 -> 4.1.2 Leon Anavi
2020-06-25 13:01   ` [oe] " Trevor Gamblin
2020-06-23  9:51 ` [meta-python][PATCH 05/11] python3-more-itertools: Upgrade 8.3.0 -> 8.4.0 Leon Anavi
2020-06-25 13:01   ` [oe] " Trevor Gamblin
2020-06-23  9:51 ` [meta-python][PATCH 06/11] python3-configparser: Upgrade 4.0.2 -> 5.0.0 Leon Anavi
2020-06-25 13:01   ` [oe] " Trevor Gamblin
2020-06-23  9:51 ` [meta-python][PATCH 07/11] python3-pytest-timeout: Upgrade 1.3.4 -> 1.4.1 Leon Anavi
2020-06-25 13:01   ` [oe] " Trevor Gamblin
2020-06-23  9:51 ` [meta-python][PATCH 08/11] python3-semver: Upgrade 2.8.1 -> 2.10.2 Leon Anavi
2020-06-25 13:02   ` [oe] " Trevor Gamblin
2020-06-23  9:51 ` [meta-python][PATCH 09/11] python3-spidev: Upgrade 3.4 -> 3.5 Leon Anavi
2020-06-25 13:02   ` [oe] " Trevor Gamblin
2020-06-23  9:51 ` [meta-python][PATCH 10/11] python3-pint: Upgrade 0.12 -> 0.13 Leon Anavi
2020-06-25 13:02   ` [oe] " Trevor Gamblin
2020-06-23  9:51 ` [meta-python][PATCH 11/11] python3-xxhash: Upgrade 1.4.3 -> 1.4.4 Leon Anavi
2020-06-25 13:18   ` [oe] " Trevor Gamblin
2020-06-25 13:00 ` [oe] [meta-python][PATCH 01/11] python3-sqlalchemy: Upgrade 1.3.12 -> 1.3.17 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.