All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/7] python3-transitions: Upgrade 0.8.7 -> 0.8.8
@ 2021-04-07 14:32 Leon Anavi
  2021-04-07 14:32 ` [meta-python][PATCH 2/7] python3-sqlalchemy: Upgrade 1.4.5 -> 1.4.6 Leon Anavi
                   ` (5 more replies)
  0 siblings, 6 replies; 7+ messages in thread
From: Leon Anavi @ 2021-04-07 14:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.8.8:

- AsyncMachine does not remove models when remove_models is called
- Introduce try/except for finalize callbacks in Machine and
  HierachicalMachine. Thus, errors occurring in finalize callbacks
  will be suppressed and only the original error will be raised.
- Show references in graphs and markup. Introduce
  MarkupMachine.format_references to tweak reference formatting
- Introduce Machine.on_exception to handle raised exceptions in
  callbacks
- Machine.get_triggers now supports State and Enum as arguments
- NestedState and HierachicalMachine.add_states now accept (lists
  of) states and enums as initial parameter

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...ython3-transitions_0.8.7.bb => python3-transitions_0.8.8.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-transitions_0.8.7.bb => python3-transitions_0.8.8.bb} (73%)

diff --git a/meta-python/recipes-devtools/python/python3-transitions_0.8.7.bb b/meta-python/recipes-devtools/python/python3-transitions_0.8.8.bb
similarity index 73%
rename from meta-python/recipes-devtools/python/python3-transitions_0.8.7.bb
rename to meta-python/recipes-devtools/python/python3-transitions_0.8.8.bb
index 04a033742..2b82df581 100644
--- a/meta-python/recipes-devtools/python/python3-transitions_0.8.7.bb
+++ b/meta-python/recipes-devtools/python/python3-transitions_0.8.8.bb
@@ -4,6 +4,6 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=baac7be1f4c17620df74188e23da6d47"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "8c60ec0828cd037820726283cad5d4d77a5e31514e058b51250420e9873e9bc7"
+SRC_URI[sha256sum] = "e7a86b31a161a76133f189b3ae9dad2755a80ea4c1e0eee1805648d021fb677d"
 
 RDEPENDS_${PN} += "python3-six"
-- 
2.17.1


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

* [meta-python][PATCH 2/7] python3-sqlalchemy: Upgrade 1.4.5 -> 1.4.6
  2021-04-07 14:32 [meta-python][PATCH 1/7] python3-transitions: Upgrade 0.8.7 -> 0.8.8 Leon Anavi
@ 2021-04-07 14:32 ` Leon Anavi
  2021-04-07 14:32 ` [meta-python][PATCH 3/7] python3-bitarray: Upgrade 1.9.0 -> 1.9.1 Leon Anavi
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Leon Anavi @ 2021-04-07 14:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.4.6:

orm:

- Fixed regression where a deprecated form of Query.join() were
  used, passing a series of entities to join from without any ON
  clause in a single Query.join() call, would fail to function
  correctly.
- Fixed critical regression where the Query.yield_per() method in
  the ORM would set up the internal Result to yield chunks at a
  time, however made use of the new Result.unique() method which
  uniques across the entire result.

sql:

- Fixed further regressions in the same area as that of #6173
  released in 1.4.5, where a “postcompile” parameter, again most
  typically those used for LIMIT/OFFSET rendering in Oracle and
  SQL Server, would fail to be processed correctly if the same
  parameter rendered in multiple places in the statement.
- Executing a Subquery using Connection.execute() is deprecated
  and will emit a deprecation warning; this use case was an
  oversight that should have been removed from 1.4.

schema:

- The Table object now raises an informative error message if it
  is instantiated without passing at least the Table.name and
  Table.metadata arguments positionally. Previously, if these were
  passed as keyword arguments, the object would silently fail to
  initialize correctly.

mypy:

- Applied a series of refactorings and fixes to accommodate for
  Mypy "incremental" mode across multiple files, which previously
  was not taken into account. In this mode the Mypy plugin has to
  accommodate Python datatypes expressed in other files coming in
  with less information than they have on a direct run.
- Fixed issue where the Mypy plugin would fail to interpret the
  "collection_class" of a relationship if it were a callable and
  not a class. Also improved type matching and error reporting for
  collection-oriented relationships.

asyncio:

- Added accessors .sqlstate and synonym .pgcode to the .orig
  attribute of the SQLAlchemy exception class raised by the
  asyncpg DBAPI adapter, that is, the intermediary exception
  object that wraps on top of that raised by the asyncpg
  library itself, but below the level of the SQLAlchemy dialect.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...{python3-sqlalchemy_1.4.5.bb => python3-sqlalchemy_1.4.6.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-sqlalchemy_1.4.5.bb => python3-sqlalchemy_1.4.6.bb} (85%)

diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.5.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.6.bb
similarity index 85%
rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.5.bb
rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.6.bb
index 206a9ab3b..4d5aa33d1 100644
--- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.5.bb
+++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.4.6.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "http://www.sqlalchemy.org/"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=3359ed561ac16aaa25b6c6eff84df595"
 
-SRC_URI[sha256sum] = "1294f05916c044631fd626a4866326bbfbd17f62bd37510d000afaef4b35bd74"
+SRC_URI[sha256sum] = "193c3ca465fbc68de071995a461ab535466f041089d372ee6a6f0aae7b9307e6"
 
 PYPI_PACKAGE = "SQLAlchemy"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 3/7] python3-bitarray: Upgrade 1.9.0 -> 1.9.1
  2021-04-07 14:32 [meta-python][PATCH 1/7] python3-transitions: Upgrade 0.8.7 -> 0.8.8 Leon Anavi
  2021-04-07 14:32 ` [meta-python][PATCH 2/7] python3-sqlalchemy: Upgrade 1.4.5 -> 1.4.6 Leon Anavi
@ 2021-04-07 14:32 ` Leon Anavi
  2021-04-07 14:32 ` [meta-python][PATCH 4/7] python3-pysonos: Upgrade 0.0.41 -> 0.0.42 Leon Anavi
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Leon Anavi @ 2021-04-07 14:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.9.1:

- switch documentation from markdown to reStructuredText
- add tests

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-bitarray_1.9.0.bb => python3-bitarray_1.9.1.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-bitarray_1.9.0.bb => python3-bitarray_1.9.1.bb} (77%)

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_1.9.0.bb b/meta-python/recipes-devtools/python/python3-bitarray_1.9.1.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-bitarray_1.9.0.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_1.9.1.bb
index 12ac3d964..e6bfb25c4 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_1.9.0.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_1.9.1.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/ilanschnell/bitarray"
 LICENSE = "PSF"
 LIC_FILES_CHKSUM = "file://PKG-INFO;beginline=8;endline=8;md5=2ad702cdcd49e8d2ac01d7e7d0810d2d"
 
-SRC_URI[sha256sum] = "db00073387af7fe30852d96b04742a0cdbc7feaf3158558520ab7898b0435ee2"
+SRC_URI[sha256sum] = "ec99acc1b18f99b7e9d0b77766b99f80b3c42d4e83306334deef9745b41a2079"
 
 inherit setuptools3 pypi
 
-- 
2.17.1


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

* [meta-python][PATCH 4/7] python3-pysonos: Upgrade 0.0.41 -> 0.0.42
  2021-04-07 14:32 [meta-python][PATCH 1/7] python3-transitions: Upgrade 0.8.7 -> 0.8.8 Leon Anavi
  2021-04-07 14:32 ` [meta-python][PATCH 2/7] python3-sqlalchemy: Upgrade 1.4.5 -> 1.4.6 Leon Anavi
  2021-04-07 14:32 ` [meta-python][PATCH 3/7] python3-bitarray: Upgrade 1.9.0 -> 1.9.1 Leon Anavi
@ 2021-04-07 14:32 ` Leon Anavi
  2021-04-07 14:32 ` [meta-python][PATCH 5/7] python3-django: Upgrade 3.1.7 -> 3.2 Leon Anavi
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 7+ messages in thread
From: Leon Anavi @ 2021-04-07 14:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.0.42:

- Handle parse_event_xml doing I/O in the asyncio event loop

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../{python3-pysonos_0.0.41.bb => python3-pysonos_0.0.42.bb}    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-pysonos_0.0.41.bb => python3-pysonos_0.0.42.bb} (79%)

diff --git a/meta-python/recipes-devtools/python/python3-pysonos_0.0.41.bb b/meta-python/recipes-devtools/python/python3-pysonos_0.0.42.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-pysonos_0.0.41.bb
rename to meta-python/recipes-devtools/python/python3-pysonos_0.0.42.bb
index 564d60ee4..25defabc5 100644
--- a/meta-python/recipes-devtools/python/python3-pysonos_0.0.41.bb
+++ b/meta-python/recipes-devtools/python/python3-pysonos_0.0.42.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE.rst;md5=07b0e2ca9ac77cd65cd4edf2e13367ea"
 
-SRC_URI[sha256sum] = "08d17fee04cc8209b915e61407673ea843b55792a9301fbe86adb9cc69a67a54"
+SRC_URI[sha256sum] = "20b45fa1779a01325e67822d243e1a3f7657d8b515308d84c1eb3c805cc3bdb5"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 5/7] python3-django: Upgrade 3.1.7 -> 3.2
  2021-04-07 14:32 [meta-python][PATCH 1/7] python3-transitions: Upgrade 0.8.7 -> 0.8.8 Leon Anavi
                   ` (2 preceding siblings ...)
  2021-04-07 14:32 ` [meta-python][PATCH 4/7] python3-pysonos: Upgrade 0.0.41 -> 0.0.42 Leon Anavi
@ 2021-04-07 14:32 ` Leon Anavi
  2021-04-07 14:32 ` [meta-python][PATCH 6/7] python3-tqdm: Upgrade 4.59.0 -> 4.60.0 Leon Anavi
  2021-04-07 14:32 ` [meta-python][PATCH 7/7] python3-xmlschema: Upgrade 1.5.3 -> 1.6.0 Leon Anavi
  5 siblings, 0 replies; 7+ messages in thread
From: Leon Anavi @ 2021-04-07 14:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.2:

- Automatic AppConfig discovery
- Customizing type of auto-created primary keys
- Functional indexes
- pymemcache support
- New decorators for the admin site
- Other minor new features

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

diff --git a/meta-python/recipes-devtools/python/python3-django_3.1.7.bb b/meta-python/recipes-devtools/python/python3-django_3.2.bb
similarity index 59%
rename from meta-python/recipes-devtools/python/python3-django_3.1.7.bb
rename to meta-python/recipes-devtools/python/python3-django_3.2.bb
index d22bd14e8..e147e2f9d 100644
--- a/meta-python/recipes-devtools/python/python3-django_3.1.7.bb
+++ b/meta-python/recipes-devtools/python/python3-django_3.2.bb
@@ -1,7 +1,7 @@
 require python-django.inc
 inherit setuptools3
 
-SRC_URI[sha256sum] = "32ce792ee9b6a0cbbec340123e229ac9f765dff8c2a4ae9247a14b2ba3a365a7"
+SRC_URI[sha256sum] = "21f0f9643722675976004eb683c55d33c05486f94506672df3d6a141546f389d"
 
 RDEPENDS_${PN} += "\
     ${PYTHON_PN}-sqlparse \
@@ -9,5 +9,5 @@ RDEPENDS_${PN} += "\
 
 # Set DEFAULT_PREFERENCE so that the LTS version of django is built by
 # default. To build the 3.x branch, 
-# PREFERRED_VERSION_python3-django = "3.1.7" can be added to local.conf
+# PREFERRED_VERSION_python3-django = "3.2" can be added to local.conf
 DEFAULT_PREFERENCE = "-1"
-- 
2.17.1


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

* [meta-python][PATCH 6/7] python3-tqdm: Upgrade 4.59.0 -> 4.60.0
  2021-04-07 14:32 [meta-python][PATCH 1/7] python3-transitions: Upgrade 0.8.7 -> 0.8.8 Leon Anavi
                   ` (3 preceding siblings ...)
  2021-04-07 14:32 ` [meta-python][PATCH 5/7] python3-django: Upgrade 3.1.7 -> 3.2 Leon Anavi
@ 2021-04-07 14:32 ` Leon Anavi
  2021-04-07 14:32 ` [meta-python][PATCH 7/7] python3-xmlschema: Upgrade 1.5.3 -> 1.6.0 Leon Anavi
  5 siblings, 0 replies; 7+ messages in thread
From: Leon Anavi @ 2021-04-07 14:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 4.60.0:

- add contrib.logging helpers for redirecting to tqdm.write()
- support delay in notebook
- fix contrib.tmap, tzip not using tqdm_class
- add notebook tests
- updates & misc minor fixes for documentation

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/{python3-tqdm_4.59.0.bb => python3-tqdm_4.60.0.bb}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-devtools/python/{python3-tqdm_4.59.0.bb => python3-tqdm_4.60.0.bb} (78%)

diff --git a/meta-python/recipes-devtools/python/python3-tqdm_4.59.0.bb b/meta-python/recipes-devtools/python/python3-tqdm_4.60.0.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-tqdm_4.59.0.bb
rename to meta-python/recipes-devtools/python/python3-tqdm_4.60.0.bb
index 32e5cf053..e20ba779a 100644
--- a/meta-python/recipes-devtools/python/python3-tqdm_4.59.0.bb
+++ b/meta-python/recipes-devtools/python/python3-tqdm_4.60.0.bb
@@ -5,7 +5,7 @@ SECTION = "devel/python"
 LICENSE = "MIT & MPL-2.0"
 LIC_FILES_CHKSUM = "file://LICENCE;md5=59e4271a933d33edfe60237db377a14b"
 
-SRC_URI[sha256sum] = "d666ae29164da3e517fcf125e41d4fe96e5bb375cd87ff9763f6b38b5592fe33"
+SRC_URI[sha256sum] = "ebdebdb95e3477ceea267decfc0784859aa3df3e27e22d23b83e9b272bf157ae"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 7/7] python3-xmlschema: Upgrade 1.5.3 -> 1.6.0
  2021-04-07 14:32 [meta-python][PATCH 1/7] python3-transitions: Upgrade 0.8.7 -> 0.8.8 Leon Anavi
                   ` (4 preceding siblings ...)
  2021-04-07 14:32 ` [meta-python][PATCH 6/7] python3-tqdm: Upgrade 4.59.0 -> 4.60.0 Leon Anavi
@ 2021-04-07 14:32 ` Leon Anavi
  5 siblings, 0 replies; 7+ messages in thread
From: Leon Anavi @ 2021-04-07 14:32 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.6.0:

- XML data bindings and code generators are now considered stable
- Add arguments 'max_depth' and 'extra_validator' to validation
  methods
- Enhance decoding with 'value_hook' argument

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

diff --git a/meta-python/recipes-devtools/python/python3-xmlschema_1.5.3.bb b/meta-python/recipes-devtools/python/python3-xmlschema_1.6.0.bb
similarity index 83%
rename from meta-python/recipes-devtools/python/python3-xmlschema_1.5.3.bb
rename to meta-python/recipes-devtools/python/python3-xmlschema_1.6.0.bb
index 3f9c06365..2d207fb24 100644
--- a/meta-python/recipes-devtools/python/python3-xmlschema_1.5.3.bb
+++ b/meta-python/recipes-devtools/python/python3-xmlschema_1.6.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/sissaschool/xmlschema"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=47489cb18c469474afeb259ed1d4832f"
 
-SRC_URI[sha256sum] = "a7db4c8ae2afa28654d15fcbf5d7f22f0441b5611e50426426e5418f369b5c79"
+SRC_URI[sha256sum] = "e951efc5ab3f251973f92cba7a7026adb32a4cd844d3425133d23eb269de4f8f"
 
 PYPI_PACKAGE = "xmlschema"
 inherit pypi setuptools3
-- 
2.17.1


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

end of thread, other threads:[~2021-04-07 14:32 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-07 14:32 [meta-python][PATCH 1/7] python3-transitions: Upgrade 0.8.7 -> 0.8.8 Leon Anavi
2021-04-07 14:32 ` [meta-python][PATCH 2/7] python3-sqlalchemy: Upgrade 1.4.5 -> 1.4.6 Leon Anavi
2021-04-07 14:32 ` [meta-python][PATCH 3/7] python3-bitarray: Upgrade 1.9.0 -> 1.9.1 Leon Anavi
2021-04-07 14:32 ` [meta-python][PATCH 4/7] python3-pysonos: Upgrade 0.0.41 -> 0.0.42 Leon Anavi
2021-04-07 14:32 ` [meta-python][PATCH 5/7] python3-django: Upgrade 3.1.7 -> 3.2 Leon Anavi
2021-04-07 14:32 ` [meta-python][PATCH 6/7] python3-tqdm: Upgrade 4.59.0 -> 4.60.0 Leon Anavi
2021-04-07 14:32 ` [meta-python][PATCH 7/7] python3-xmlschema: Upgrade 1.5.3 -> 1.6.0 Leon Anavi

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.