All of lore.kernel.org
 help / color / mirror / Atom feed
* [oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.28.0 -> 2.30.0
@ 2021-11-10  4:06 Wang Mingyu
  2021-11-10  4:06 ` [oe] [meta-python] [PATCH] python3-graphviz: upgrade 0.17 -> 0.18 Wang Mingyu
  0 siblings, 1 reply; 2+ messages in thread
From: Wang Mingyu @ 2021-11-10  4:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Features
androidmanagement: update the api be2e5dd (5dcb723)
appengine: update the api 4535ce5 (5dcb723)
artifactregistry: update the api 882fdb3 (5dcb723)
chromepolicy: update the api c330a6f (5dcb723)
cloudidentity: update the api d0f0527 (5dcb723)
composer: update the api 2bfa5a1 (5dcb723)
compute: update the api b917688 (5dcb723)
datastream: update the api 218521c (5dcb723)
dns: update the api 540233d (5dcb723)
healthcare: update the api 1e029c8 (5dcb723)
ondemandscanning: update the api 9f998b4 (5dcb723)
osconfig: update the api 59cea85 (5dcb723)
paymentsresellersubscription: update the api efb5b4f (5dcb723)
privateca: update the api b4ae2c8 (5dcb723)
recommender: update the api 8dffae4 (5dcb723)
retail: update the api f711074 (5dcb723)
storagetransfer: update the api c835926 (5dcb723)
streetviewpublish: update the api 35f0b1b (5dcb723)
translate: update the api 1f848a5 (5dcb723)

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 ...ent_2.28.0.bb => python3-google-api-python-client_2.30.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-google-api-python-client_2.28.0.bb => python3-google-api-python-client_2.30.0.bb} (86%)

diff --git a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.28.0.bb b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.30.0.bb
similarity index 86%
rename from meta-python/recipes-devtools/python/python3-google-api-python-client_2.28.0.bb
rename to meta-python/recipes-devtools/python/python3-google-api-python-client_2.30.0.bb
index 19ae3cba37..e1f7040e4f 100644
--- a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.28.0.bb
+++ b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.30.0.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/googleapis/google-api-python-client"
 LICENSE = "Apache-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=86d3f3a95c324c9479bd8986968f4327"
 
-SRC_URI[sha256sum] = "07e6fdfc489a452d79c5efdc4cc2d5cfd7f7aa207dec82786bfcc436b208e027"
+SRC_URI[sha256sum] = "d46418a296f8ee309b2044791aeffae512cb1a9d9bfb3def2bfb37058f01c645"
 
 inherit pypi setuptools3
 
-- 
2.25.1



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

* [oe] [meta-python] [PATCH] python3-graphviz: upgrade 0.17 -> 0.18
  2021-11-10  4:06 [oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.28.0 -> 2.30.0 Wang Mingyu
@ 2021-11-10  4:06 ` Wang Mingyu
  0 siblings, 0 replies; 2+ messages in thread
From: Wang Mingyu @ 2021-11-10  4:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Wang Mingyu

Changelog
Version 0.18
Change of beaviour: File endings are now normalized so that all DOT source
outputs end with a final newline (Unix convention, simplifies concatenation).
This includes DOT source files written by .render(), .view(), or .save()
as well was .source generated or loaded from Source (or Source.from_file()).

Change of behaviour: Source instances created by Source.from_file() no nonger
write the content read into .source back into the
file. Use .save(skip_existing=False) before calling .render() or .view() if
you want to overwrite the file to produce the previous (less safe) behaviour.

Change of undocumented behaviour: When iterating over a Graph, Digraph,
or Source instance, the yielded lines now include a final newline ('\n').
This mimics iteration over file object lines in text mode.

When passing invalid parameters such as unknown engine, format, etc., .render()
now raises early before writing the file. Call .save() explicitly to produce
the previous (less safe) behaiour.

Add optional keyword-only encoding argument to pipe(). Returns the decoded
stdout from the rendering process (e.g. format='svg'). Delegates
encoding/decoding to subprocess in the common case (input and output encoding
are the same, e.g. default encoding='utf-8'). Used by the Jupyter notebook
integration.

Add optional keyword-only engine argument to .pipe() and .render().

Add optional keyword-only renderer and formatter arguments to Graph(),
Digraph(), Source() and Source.from_file() to set default renderers and
formatters (similar to format). Used by .pipe(), .render(), and .view() if
not given as method-argument.

Add pipe_string(), pipe_lines(), and pipe_lines_string(). Pipe input_string,
return string. Pipe input_lines incrementally, return bytes. Pipe input_lines
incrementally, return string.

Add set_default_engine() and set_default_format()

Add backend.DOT_BINARY and backend.UNFLATTEN_BINARY.

Restructure the internal class hierarchy using multiple-inheritance with
cooperative super() calling: Graph now inherits both from Dot and from Render,
and both of them inherit from Base which defines their common interface: Lines
of DOT source code that Dot generates (also Source) and rendering iterates over.
This might break some undocumented use of subclassing and require adatation

Improve test separation. Improve test coverage of running the tests with
--skip-exe.

Add pytype checking and flake8 to build workflow.

Extend type annotations.

Add https://mybinder.org config with head development environment. Add launch
badge to code repository.

Improve documentation and examples.

Add development docs.

Document release process.

Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
---
 .../{python3-graphviz_0.17.bb => python3-graphviz_0.18.bb}      | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-graphviz_0.17.bb => python3-graphviz_0.18.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-graphviz_0.17.bb b/meta-python/recipes-devtools/python/python3-graphviz_0.18.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-graphviz_0.17.bb
rename to meta-python/recipes-devtools/python/python3-graphviz_0.18.bb
index 017a1d0fe6..200292d667 100644
--- a/meta-python/recipes-devtools/python/python3-graphviz_0.17.bb
+++ b/meta-python/recipes-devtools/python/python3-graphviz_0.18.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://graphviz.readthedocs.io/en/stable/"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=87cd8818b7e63c6a9c580034e80d7521"
 
-SRC_URI[sha256sum] = "ef6e2c5deb9cdcc0c7eece1d89625fd07b0f2208ea2bcb483520907ddf8b4e12"
+SRC_URI[sha256sum] = "0f04e5f939d3a839b524283d590e941892c56e75e60e0f5238c431264f490022"
 
 inherit pypi setuptools3
 
-- 
2.25.1



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

end of thread, other threads:[~2021-11-10  4:06 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-10  4:06 [oe] [meta-python] [PATCH] python3-google-api-python-client: upgrade 2.28.0 -> 2.30.0 Wang Mingyu
2021-11-10  4:06 ` [oe] [meta-python] [PATCH] python3-graphviz: upgrade 0.17 -> 0.18 Wang Mingyu

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.