All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1
@ 2021-01-06 22:06 Leon Anavi
  2021-01-06 22:06 ` [meta-python][PATCH 02/10] python3-twine: Upgrade 3.2.0 -> 3.3.0 Leon Anavi
                   ` (9 more replies)
  0 siblings, 10 replies; 20+ messages in thread
From: Leon Anavi @ 2021-01-06 22:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.7.1:

- There was a regression in 1.7 that meant that __slots__ would
  not work correctly for Basic instances and they would end up
  having __dict__. This also made it possible to set arbitrary
  attributes on Basic instances such as symbols which breaks
  immutability. This was fixed in 1.7.1 to ensure that Basic
  instances do not have __dict__ and it is not possible to set
  attributes on them.
- Fixed lazy iteration of series with expr.series(x, n=None)
  which was broken in the 1.7 release.
- Updated documentation for sympy.stats.sample for seed argument.
- sympy.stats.sample now has an optional seed argument.
- Random failures with sympy.stats.sample have now been fixed.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 .../python/{python3-sympy_1.6.2.bb => python3-sympy_1.7.1.bb}  | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-sympy_1.6.2.bb => python3-sympy_1.7.1.bb} (75%)

diff --git a/meta-python/recipes-devtools/python/python3-sympy_1.6.2.bb b/meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb
similarity index 75%
rename from meta-python/recipes-devtools/python/python3-sympy_1.6.2.bb
rename to meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb
index 428b40c3b7..d4508689f6 100644
--- a/meta-python/recipes-devtools/python/python3-sympy_1.6.2.bb
+++ b/meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb
@@ -6,8 +6,7 @@ HOMEPAGE = "https://pypi.org/project/sympy/"
 LICENSE = "BSD"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=ebb06e9df8f57522b72d0edb0fcf83d4"
 
-SRC_URI[md5sum] = "50d6b69b1de36b757484b9ff833a9e0a"
-SRC_URI[sha256sum] = "1cfadcc80506e4b793f5b088558ca1fcbeaec24cd6fc86f1fdccaa3ee1d48708"
+SRC_URI[sha256sum] = "a3de9261e97535b83bb8607b0da2c7d03126650fafea2b2789657b229c246b2e"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 02/10] python3-twine: Upgrade 3.2.0 -> 3.3.0
  2021-01-06 22:06 [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 Leon Anavi
@ 2021-01-06 22:06 ` Leon Anavi
  2021-01-08 16:05   ` [oe] " Trevor Gamblin
  2021-01-06 22:06 ` [meta-python][PATCH 03/10] python3-humanfriendly: Upgrade 8.2 -> 9.1 Leon Anavi
                   ` (8 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-01-06 22:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 3.3.0:

- Print files to be uploaded using upload --verbose
- Print configuration file location when using upload --verbose
- Print source and values of credentials when using upload
  --verbose
- Add support for Python 3.9
- Turn warnings into errors when using check --strict

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

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


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

* [meta-python][PATCH 03/10] python3-humanfriendly: Upgrade 8.2 -> 9.1
  2021-01-06 22:06 [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 Leon Anavi
  2021-01-06 22:06 ` [meta-python][PATCH 02/10] python3-twine: Upgrade 3.2.0 -> 3.3.0 Leon Anavi
@ 2021-01-06 22:06 ` Leon Anavi
  2021-01-08 16:05   ` [oe] " Trevor Gamblin
  2021-01-06 22:06 ` [meta-python][PATCH 04/10] python3-sqlalchemy: Upgrade 1.3.20 -> 1.3.22 Leon Anavi
                   ` (7 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-01-06 22:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 9.1:

- Added on_macos() function to detect Apple MacOS
- Changed format_number() to properly support negative numbers
- Changed pluralize() to generate “1.5 seconds” instead of
  "1.5 second"
- Enhanced concatenate() to support conjunction and serial_comma
  keyword arguments
- Added pluralize_raw() to select singular or plural form without
  prefixing the count to the text that is returned

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...thon3-humanfriendly_8.2.bb => python3-humanfriendly_9.1.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-humanfriendly_8.2.bb => python3-humanfriendly_9.1.bb} (80%)

diff --git a/meta-python/recipes-devtools/python/python3-humanfriendly_8.2.bb b/meta-python/recipes-devtools/python/python3-humanfriendly_9.1.bb
similarity index 80%
rename from meta-python/recipes-devtools/python/python3-humanfriendly_8.2.bb
rename to meta-python/recipes-devtools/python/python3-humanfriendly_9.1.bb
index 61c969d760..fb6a7e3b6d 100644
--- a/meta-python/recipes-devtools/python/python3-humanfriendly_8.2.bb
+++ b/meta-python/recipes-devtools/python/python3-humanfriendly_9.1.bb
@@ -6,8 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=764e737b117a38d773609885e8d04f0b"
 
 PYPI_PACKAGE = "humanfriendly"
 
-SRC_URI[md5sum] = "e6064a6fe099c4231c3e969ca5fea335"
-SRC_URI[sha256sum] = "bf52ec91244819c780341a3438d5d7b09f431d3f113a475147ac9b7b167a3d12"
+SRC_URI[sha256sum] = "066562956639ab21ff2676d1fda0b5987e985c534fc76700a19bd54bcb81121d"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 04/10] python3-sqlalchemy: Upgrade 1.3.20 -> 1.3.22
  2021-01-06 22:06 [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 Leon Anavi
  2021-01-06 22:06 ` [meta-python][PATCH 02/10] python3-twine: Upgrade 3.2.0 -> 3.3.0 Leon Anavi
  2021-01-06 22:06 ` [meta-python][PATCH 03/10] python3-humanfriendly: Upgrade 8.2 -> 9.1 Leon Anavi
@ 2021-01-06 22:06 ` Leon Anavi
  2021-01-08 16:05   ` [oe] " Trevor Gamblin
  2021-01-06 22:06 ` [meta-python][PATCH 05/10] python3-transitions: Upgrade 0.8.5 -> 0.8.6 Leon Anavi
                   ` (6 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-01-06 22:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.3.22:

- Fixed regression which occured due to #5755 which implemented
  isolation level support for Oracle. It has been reported that
  many Oracle accounts don't actually have permission to query
  the v$transaction view so this feature has been altered to
  gracefully fallback when it fails upon database connect, where
  the dialect will assume "READ COMMITTED" is the default
  isolation level as was the case prior to SQLAlchemy 1.3.21.
  However, explicit use of the Connection.get_isolation_level()
  method must now necessarily raise an exception, as Oracle
  databases with this restriction explicitly disallow the user
  from reading the current isolation level.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...thon3-sqlalchemy_1.3.20.bb => python3-sqlalchemy_1.3.22.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-sqlalchemy_1.3.20.bb => python3-sqlalchemy_1.3.22.bb} (78%)

diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.20.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.22.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.20.bb
rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.22.bb
index e8f598ada3..cf127241db 100644
--- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.20.bb
+++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.22.bb
@@ -4,8 +4,7 @@ HOMEPAGE = "http://www.sqlalchemy.org/"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=c19467890539ff718c00a019c9c7a7b2"
 
-SRC_URI[md5sum] = "40200b570274446a05959abd3fa81778"
-SRC_URI[sha256sum] = "d2f25c7f410338d31666d7ddedfa67570900e248b940d186b48461bd4e5569a1"
+SRC_URI[sha256sum] = "758fc8c4d6c0336e617f9f6919f9daea3ab6bb9b07005eda9a1a682e24a6cacc"
 
 PYPI_PACKAGE = "SQLAlchemy"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 05/10] python3-transitions: Upgrade 0.8.5 -> 0.8.6
  2021-01-06 22:06 [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 Leon Anavi
                   ` (2 preceding siblings ...)
  2021-01-06 22:06 ` [meta-python][PATCH 04/10] python3-sqlalchemy: Upgrade 1.3.20 -> 1.3.22 Leon Anavi
@ 2021-01-06 22:06 ` Leon Anavi
  2021-01-08 16:06   ` [oe] " Trevor Gamblin
  2021-01-06 22:06 ` [meta-python][PATCH 06/10] python3-pytest-metadata: Upgrade 1.10.0 -> 1.11.0 Leon Anavi
                   ` (5 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-01-06 22:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.8.6:

- HierarchicalMachine.add_states will raise a ValueError when an
  Enum name contains the currently used NestedState.separator.
- Bugfix: Reset NestedState._scope when enter/exit callbacks raise
  an exception
- Bugfix: Let HierarchicalMachine._get_trigger which is bound to
  model.trigger raise a MachineError for invalid events and
  AttributeError for unknown events
- Introduced HierarchicalMachine.has_trigger to determine whether
  an event is valid for an HSM
- Feature: AsyncMachine features an event queue dictionary for
  individual models when queued='model'
- Feature: Machine.remove_model will now also remove model events
  from the event queue when queued=True
- Feature: Machine.get_transitions and its HSM counterpart now
  accept Enum and State for source and dest

License-Update: Update year

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

diff --git a/meta-python/recipes-devtools/python/python3-transitions_0.8.5.bb b/meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb
similarity index 52%
rename from meta-python/recipes-devtools/python/python3-transitions_0.8.5.bb
rename to meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb
index 7f88bc1d22..701c82cda8 100644
--- a/meta-python/recipes-devtools/python/python3-transitions_0.8.5.bb
+++ b/meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb
@@ -1,9 +1,9 @@
 SUMMARY = "A lightweight, object-oriented Python state machine implementation with many extensions."
 LICENSE = "MIT"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=de0a0876a688a4483bfafa764773ab39"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=baac7be1f4c17620df74188e23da6d47"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "e441c66a0c753d56c01c3e5e547f21dbe4a5569c939f12477475c5e81d79769b"
+SRC_URI[sha256sum] = "032e10113139852ffb3ecfa4c2a5138f87441d85c3d6ad9122bb4b0978180a8d"
 
 RDEPENDS_${PN} += "python3-six"
-- 
2.17.1


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

* [meta-python][PATCH 06/10] python3-pytest-metadata: Upgrade 1.10.0 -> 1.11.0
  2021-01-06 22:06 [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 Leon Anavi
                   ` (3 preceding siblings ...)
  2021-01-06 22:06 ` [meta-python][PATCH 05/10] python3-transitions: Upgrade 0.8.5 -> 0.8.6 Leon Anavi
@ 2021-01-06 22:06 ` Leon Anavi
  2021-01-08 16:06   ` [oe] " Trevor Gamblin
  2021-01-06 22:06 ` [meta-python][PATCH 07/10] python3-smbus2: Upgrade 0.3.0 -> 0.4.0 Leon Anavi
                   ` (4 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-01-06 22:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.11.0:

- Provide a session fixture to include metadata in Junit XMLs
  as property tags

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...st-metadata_1.10.0.bb => python3-pytest-metadata_1.11.0.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-pytest-metadata_1.10.0.bb => python3-pytest-metadata_1.11.0.bb} (72%)

diff --git a/meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb b/meta-python/recipes-devtools/python/python3-pytest-metadata_1.11.0.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb
rename to meta-python/recipes-devtools/python/python3-pytest-metadata_1.11.0.bb
index 70cc98f294..a1b62d16e4 100644
--- a/meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb
+++ b/meta-python/recipes-devtools/python/python3-pytest-metadata_1.11.0.bb
@@ -4,8 +4,7 @@ DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
 LICENSE = "MPL-2.0"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=5d425c8f3157dbf212db2ec53d9e5132"
 
-SRC_URI[sha256sum] = "b7e6e0a45adacb17a03a97bf7a2ef60cc1f4e172bcce9732ce5e814191932315"
-SRC_URI[md5sum] = "4fcf9764e6210c4555411fce8109e7cd"
+SRC_URI[sha256sum] = "71b506d49d34e539cc3cfdb7ce2c5f072bea5c953320002c95968e0238f8ecf1"
 
 PYPI_PACKAGE = "pytest-metadata"
 
-- 
2.17.1


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

* [meta-python][PATCH 07/10] python3-smbus2: Upgrade 0.3.0 -> 0.4.0
  2021-01-06 22:06 [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 Leon Anavi
                   ` (4 preceding siblings ...)
  2021-01-06 22:06 ` [meta-python][PATCH 06/10] python3-pytest-metadata: Upgrade 1.10.0 -> 1.11.0 Leon Anavi
@ 2021-01-06 22:06 ` Leon Anavi
  2021-01-08 16:07   ` [oe] " Trevor Gamblin
  2021-01-06 22:07 ` [meta-python][PATCH 08/10] python3-cantools: Upgrade 35.5.0 -> 36.1.0 Leon Anavi
                   ` (3 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-01-06 22:06 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.4.0:

- Support for SMBus PEC (Packet Error Checking).
- Support for Python 3 type hinting and mypy static type analysis.
  Type stubs added to the project.

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

diff --git a/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb b/meta-python/recipes-devtools/python/python3-smbus2_0.4.0.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
rename to meta-python/recipes-devtools/python/python3-smbus2_0.4.0.bb
index 7a61927206..1f6f61137e 100644
--- a/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
+++ b/meta-python/recipes-devtools/python/python3-smbus2_0.4.0.bb
@@ -6,8 +6,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda
 
 inherit pypi setuptools3
 
-SRC_URI[md5sum] = "d5ed5acc889b4770a84cc932853ed20a"
-SRC_URI[sha256sum] = "210e66eebe4d0b1fe836b3ec2751841942e1c4918c0b429b20a0e20a222228b4"
+SRC_URI[sha256sum] = "1b5c690715e1efab39e41038147dfba75afc72a10f76b3f0310d783e9f8a83a6"
 
 CLEANBROKEN = "1"
 
-- 
2.17.1


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

* [meta-python][PATCH 08/10] python3-cantools: Upgrade 35.5.0 -> 36.1.0
  2021-01-06 22:06 [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 Leon Anavi
                   ` (5 preceding siblings ...)
  2021-01-06 22:06 ` [meta-python][PATCH 07/10] python3-smbus2: Upgrade 0.3.0 -> 0.4.0 Leon Anavi
@ 2021-01-06 22:07 ` Leon Anavi
  2021-01-08 16:07   ` [oe] " Trevor Gamblin
  2021-01-06 22:07 ` [meta-python][PATCH 09/10] python3-sentry-sdk: Upgrade 0.19.1 -> 0.19.5 Leon Anavi
                   ` (2 subsequent siblings)
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-01-06 22:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 36.1.0:

- Added sub command plot
- plot test: parse output of cantools decode
- added plot subcommand to readme
- removed unneeded code

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

diff --git a/meta-python/recipes-devtools/python/python3-cantools_35.5.0.bb b/meta-python/recipes-devtools/python/python3-cantools_36.1.0.bb
similarity index 74%
rename from meta-python/recipes-devtools/python/python3-cantools_35.5.0.bb
rename to meta-python/recipes-devtools/python/python3-cantools_36.1.0.bb
index cb70ed3188..b2f3fd6d82 100644
--- a/meta-python/recipes-devtools/python/python3-cantools_35.5.0.bb
+++ b/meta-python/recipes-devtools/python/python3-cantools_36.1.0.bb
@@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/eerimoq/cantools"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd"
 
-SRC_URI[sha256sum] = "ce26ab5d54762c314bedc35b407d498b8ae11069ab4d9251f8ac83f2956438f9"
+SRC_URI[sha256sum] = "3c4c2652907c48e7013f825cc3068b5d47a38b62f01bd04aaab1d9f69a8f53f5"
 
 PYPI_PACKAGE = "cantools"
 
-- 
2.17.1


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

* [meta-python][PATCH 09/10] python3-sentry-sdk: Upgrade 0.19.1 -> 0.19.5
  2021-01-06 22:06 [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 Leon Anavi
                   ` (6 preceding siblings ...)
  2021-01-06 22:07 ` [meta-python][PATCH 08/10] python3-cantools: Upgrade 35.5.0 -> 36.1.0 Leon Anavi
@ 2021-01-06 22:07 ` Leon Anavi
  2021-01-08 16:07   ` [oe] " Trevor Gamblin
  2021-01-06 22:07 ` [meta-python][PATCH 10/10] python3-babel: Upgrade 2.8.0 -> 2.9.0 Leon Anavi
  2021-01-08 16:05 ` [oe] [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 Trevor Gamblin
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-01-06 22:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.19.5:

- Fix two regressions added in 0.19.2 with regard to sampling
  behavior when reading the sampling decision from headers.
- Increase internal transport queue size and make it configurable.

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...thon3-sentry-sdk_0.19.1.bb => python3-sentry-sdk_0.19.5.bb} | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
 rename meta-python/recipes-devtools/python/{python3-sentry-sdk_0.19.1.bb => python3-sentry-sdk_0.19.5.bb} (72%)

diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.5.bb
similarity index 72%
rename from meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb
rename to meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.5.bb
index 2da9908e34..bb960eed09 100644
--- a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb
+++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.5.bb
@@ -5,8 +5,7 @@ HOMEPAGE = "https://github.com/getsentry/sentry-python"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=0c79f8d3c91fc847350efd28bfe0a341"
 
-SRC_URI[md5sum] = "1e6aabe30f4c86356d1d85a9beb0b05a"
-SRC_URI[sha256sum] = "5cf36eb6b1dc62d55f3c64289792cbaebc8ffa5a9da14474f49b46d20caa7fc8"
+SRC_URI[sha256sum] = "737a094e49a529dd0fdcaafa9e97cf7c3d5eb964bd229821d640bc77f3502b3f"
 
 PYPI_PACKAGE = "sentry-sdk"
 inherit pypi setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 10/10] python3-babel: Upgrade 2.8.0 -> 2.9.0
  2021-01-06 22:06 [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 Leon Anavi
                   ` (7 preceding siblings ...)
  2021-01-06 22:07 ` [meta-python][PATCH 09/10] python3-sentry-sdk: Upgrade 0.19.1 -> 0.19.5 Leon Anavi
@ 2021-01-06 22:07 ` Leon Anavi
  2021-01-08 16:08   ` [oe] " Trevor Gamblin
  2021-01-08 16:05 ` [oe] [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 Trevor Gamblin
  9 siblings, 1 reply; 20+ messages in thread
From: Leon Anavi @ 2021-01-06 22:07 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.9.0:

- CLDR: Use CLDR 37
- Dates: Handle ZoneInfo objects in get_timezone_location,
  get_timezone_name
- Numbers: Add group_separator feature in number formatting
- Dates: Correct default Format().timedelta format to 'long' to
  mute deprecation warnings
- Import: Simplify iteration code in "import_cldr.py"
- Import: Stop using deprecated ElementTree methods
  "getchildren()" and "getiterator()"
- Messages: Fix unicode printing error on Python 2 without TTY.
- Messages: Introduce invariant that _invalid_pofile() takes
  unicode line.
- Tests: fix tests when using Python 3.9
- Tests: Remove deprecated 'sudo: false' from Travis configuration
- Tests: Support Py.test 6.x
- Utilities: LazyProxy: Handle AttributeError in specified func
- Utilities: Replace usage of parser.suite with ast.parse

License-Update: Update year

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

diff --git a/meta-python/recipes-devtools/python/python3-babel_2.8.0.bb b/meta-python/recipes-devtools/python/python3-babel_2.9.0.bb
similarity index 70%
rename from meta-python/recipes-devtools/python/python3-babel_2.8.0.bb
rename to meta-python/recipes-devtools/python/python3-babel_2.9.0.bb
index c69098b226..7248abf33b 100644
--- a/meta-python/recipes-devtools/python/python3-babel_2.8.0.bb
+++ b/meta-python/recipes-devtools/python/python3-babel_2.9.0.bb
@@ -1,10 +1,9 @@
 DESCRIPTION = "A collection of tools for internationalizing Python applications"
 HOMEPAGE = "http://babel.edgewall.org/"
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE;md5=942469df9305abb1c59e95f778310384"
+LIC_FILES_CHKSUM = "file://LICENSE;md5=22a580b27e4ebf9689e466b63aedeb7f"
 
-SRC_URI[md5sum] = "6fad9772e75421969ddb41975483abdf"
-SRC_URI[sha256sum] = "1aac2ae2d0d8ea368fa90906567f5c08463d98ade155c0c4bfedd6a0f7160e38"
+SRC_URI[sha256sum] = "da031ab54472314f210b0adcff1588ee5d1d1d0ba4dbd07b94dba82bde791e05"
 
 PYPI_PACKAGE = "Babel"
 
-- 
2.17.1


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

* Re: [oe] [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1
  2021-01-06 22:06 [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 Leon Anavi
                   ` (8 preceding siblings ...)
  2021-01-06 22:07 ` [meta-python][PATCH 10/10] python3-babel: Upgrade 2.8.0 -> 2.9.0 Leon Anavi
@ 2021-01-08 16:05 ` Trevor Gamblin
  9 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-01-08 16:05 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-06 5:06 p.m., Leon Anavi wrote:
> - There was a regression in 1.7 that meant that __slots__ would
>    not work correctly for Basic instances and they would end up
>    having __dict__. This also made it possible to set arbitrary
>    attributes on Basic instances such as symbols which breaks
>    immutability. This was fixed in 1.7.1 to ensure that Basic
>    instances do not have __dict__ and it is not possible to set
>    attributes on them.
> - Fixed lazy iteration of series with expr.series(x, n=None)
>    which was broken in the 1.7 release.
> - Updated documentation for sympy.stats.sample for seed argument.
> - sympy.stats.sample now has an optional seed argument.
> - Random failures with sympy.stats.sample have now been fixed.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-sympy_1.6.2.bb => python3-sympy_1.7.1.bb}  | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-sympy_1.6.2.bb => python3-sympy_1.7.1.bb} (75%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-sympy_1.6.2.bb b/meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb
> similarity index 75%
> rename from meta-python/recipes-devtools/python/python3-sympy_1.6.2.bb
> rename to meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb
> index 428b40c3b7..d4508689f6 100644
> --- a/meta-python/recipes-devtools/python/python3-sympy_1.6.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb
> @@ -6,8 +6,7 @@ HOMEPAGE = "https://pypi.org/project/sympy/"
>   LICENSE = "BSD"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=ebb06e9df8f57522b72d0edb0fcf83d4"
>   
> -SRC_URI[md5sum] = "50d6b69b1de36b757484b9ff833a9e0a"
> -SRC_URI[sha256sum] = "1cfadcc80506e4b793f5b088558ca1fcbeaec24cd6fc86f1fdccaa3ee1d48708"
> +SRC_URI[sha256sum] = "a3de9261e97535b83bb8607b0da2c7d03126650fafea2b2789657b229c246b2e"
>   
>   inherit pypi setuptools3
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 02/10] python3-twine: Upgrade 3.2.0 -> 3.3.0
  2021-01-06 22:06 ` [meta-python][PATCH 02/10] python3-twine: Upgrade 3.2.0 -> 3.3.0 Leon Anavi
@ 2021-01-08 16:05   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-01-08 16:05 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-06 5:06 p.m., Leon Anavi wrote:
> - Print files to be uploaded using upload --verbose
> - Print configuration file location when using upload --verbose
> - Print source and values of credentials when using upload
>    --verbose
> - Add support for Python 3.9
> - Turn warnings into errors when using check --strict
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../python/{python3-twine_3.2.0.bb => python3-twine_3.3.0.bb}  | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-twine_3.2.0.bb => python3-twine_3.3.0.bb} (68%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-twine_3.2.0.bb b/meta-python/recipes-devtools/python/python3-twine_3.3.0.bb
> similarity index 68%
> rename from meta-python/recipes-devtools/python/python3-twine_3.2.0.bb
> rename to meta-python/recipes-devtools/python/python3-twine_3.3.0.bb
> index 34309585f8..0bc1999923 100644
> --- a/meta-python/recipes-devtools/python/python3-twine_3.2.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-twine_3.3.0.bb
> @@ -3,8 +3,7 @@ HOMEPAGE = "https://twine.readthedocs.io/"
>   LICENSE = "Apache-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=a3d1106b253a8d50dd82a4202a045b4c"
>   
> -SRC_URI[md5sum] = "41ce5c8aad253ef4b43b19c76997e2f2"
> -SRC_URI[sha256sum] = "34352fd52ec3b9d29837e6072d5a2a7c6fe4290e97bba46bb8d478b5c598f7ab"
> +SRC_URI[sha256sum] = "fcffa8fc37e8083a5be0728371f299598870ee1eccc94e9a25cef7b1dcfa8297"
>   
>   inherit pypi setuptools3
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 03/10] python3-humanfriendly: Upgrade 8.2 -> 9.1
  2021-01-06 22:06 ` [meta-python][PATCH 03/10] python3-humanfriendly: Upgrade 8.2 -> 9.1 Leon Anavi
@ 2021-01-08 16:05   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-01-08 16:05 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-06 5:06 p.m., Leon Anavi wrote:
> Upgrade to release 9.1:
>
> - Added on_macos() function to detect Apple MacOS
> - Changed format_number() to properly support negative numbers
> - Changed pluralize() to generate “1.5 seconds” instead of
>    "1.5 second"
> - Enhanced concatenate() to support conjunction and serial_comma
>    keyword arguments
> - Added pluralize_raw() to select singular or plural form without
>    prefixing the count to the text that is returned
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...thon3-humanfriendly_8.2.bb => python3-humanfriendly_9.1.bb} | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-humanfriendly_8.2.bb => python3-humanfriendly_9.1.bb} (80%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-humanfriendly_8.2.bb b/meta-python/recipes-devtools/python/python3-humanfriendly_9.1.bb
> similarity index 80%
> rename from meta-python/recipes-devtools/python/python3-humanfriendly_8.2.bb
> rename to meta-python/recipes-devtools/python/python3-humanfriendly_9.1.bb
> index 61c969d760..fb6a7e3b6d 100644
> --- a/meta-python/recipes-devtools/python/python3-humanfriendly_8.2.bb
> +++ b/meta-python/recipes-devtools/python/python3-humanfriendly_9.1.bb
> @@ -6,8 +6,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=764e737b117a38d773609885e8d04f0b"
>   
>   PYPI_PACKAGE = "humanfriendly"
>   
> -SRC_URI[md5sum] = "e6064a6fe099c4231c3e969ca5fea335"
> -SRC_URI[sha256sum] = "bf52ec91244819c780341a3438d5d7b09f431d3f113a475147ac9b7b167a3d12"
> +SRC_URI[sha256sum] = "066562956639ab21ff2676d1fda0b5987e985c534fc76700a19bd54bcb81121d"
>   
>   inherit pypi setuptools3
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 04/10] python3-sqlalchemy: Upgrade 1.3.20 -> 1.3.22
  2021-01-06 22:06 ` [meta-python][PATCH 04/10] python3-sqlalchemy: Upgrade 1.3.20 -> 1.3.22 Leon Anavi
@ 2021-01-08 16:05   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-01-08 16:05 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-06 5:06 p.m., Leon Anavi wrote:
> - Fixed regression which occured due to #5755 which implemented
>    isolation level support for Oracle. It has been reported that
>    many Oracle accounts don't actually have permission to query
>    the v$transaction view so this feature has been altered to
>    gracefully fallback when it fails upon database connect, where
>    the dialect will assume "READ COMMITTED" is the default
>    isolation level as was the case prior to SQLAlchemy 1.3.21.
>    However, explicit use of the Connection.get_isolation_level()
>    method must now necessarily raise an exception, as Oracle
>    databases with this restriction explicitly disallow the user
>    from reading the current isolation level.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...thon3-sqlalchemy_1.3.20.bb => python3-sqlalchemy_1.3.22.bb} | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-sqlalchemy_1.3.20.bb => python3-sqlalchemy_1.3.22.bb} (78%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.20.bb b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.22.bb
> similarity index 78%
> rename from meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.20.bb
> rename to meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.22.bb
> index e8f598ada3..cf127241db 100644
> --- a/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.20.bb
> +++ b/meta-python/recipes-devtools/python/python3-sqlalchemy_1.3.22.bb
> @@ -4,8 +4,7 @@ HOMEPAGE = "http://www.sqlalchemy.org/"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=c19467890539ff718c00a019c9c7a7b2"
>   
> -SRC_URI[md5sum] = "40200b570274446a05959abd3fa81778"
> -SRC_URI[sha256sum] = "d2f25c7f410338d31666d7ddedfa67570900e248b940d186b48461bd4e5569a1"
> +SRC_URI[sha256sum] = "758fc8c4d6c0336e617f9f6919f9daea3ab6bb9b07005eda9a1a682e24a6cacc"
>   
>   PYPI_PACKAGE = "SQLAlchemy"
>   inherit pypi setuptools3
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 05/10] python3-transitions: Upgrade 0.8.5 -> 0.8.6
  2021-01-06 22:06 ` [meta-python][PATCH 05/10] python3-transitions: Upgrade 0.8.5 -> 0.8.6 Leon Anavi
@ 2021-01-08 16:06   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-01-08 16:06 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-06 5:06 p.m., Leon Anavi wrote:
> - HierarchicalMachine.add_states will raise a ValueError when an
>    Enum name contains the currently used NestedState.separator.
> - Bugfix: Reset NestedState._scope when enter/exit callbacks raise
>    an exception
> - Bugfix: Let HierarchicalMachine._get_trigger which is bound to
>    model.trigger raise a MachineError for invalid events and
>    AttributeError for unknown events
> - Introduced HierarchicalMachine.has_trigger to determine whether
>    an event is valid for an HSM
> - Feature: AsyncMachine features an event queue dictionary for
>    individual models when queued='model'
> - Feature: Machine.remove_model will now also remove model events
>    from the event queue when queued=True
> - Feature: Machine.get_transitions and its HSM counterpart now
>    accept Enum and State for source and dest
>
> License-Update: Update year
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...hon3-transitions_0.8.5.bb => python3-transitions_0.8.6.bb} | 4 ++--
>   1 file changed, 2 insertions(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-transitions_0.8.5.bb => python3-transitions_0.8.6.bb} (52%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-transitions_0.8.5.bb b/meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb
> similarity index 52%
> rename from meta-python/recipes-devtools/python/python3-transitions_0.8.5.bb
> rename to meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb
> index 7f88bc1d22..701c82cda8 100644
> --- a/meta-python/recipes-devtools/python/python3-transitions_0.8.5.bb
> +++ b/meta-python/recipes-devtools/python/python3-transitions_0.8.6.bb
> @@ -1,9 +1,9 @@
>   SUMMARY = "A lightweight, object-oriented Python state machine implementation with many extensions."
>   LICENSE = "MIT"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=de0a0876a688a4483bfafa764773ab39"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=baac7be1f4c17620df74188e23da6d47"
>   
>   inherit pypi setuptools3
>   
> -SRC_URI[sha256sum] = "e441c66a0c753d56c01c3e5e547f21dbe4a5569c939f12477475c5e81d79769b"
> +SRC_URI[sha256sum] = "032e10113139852ffb3ecfa4c2a5138f87441d85c3d6ad9122bb4b0978180a8d"
>   
>   RDEPENDS_${PN} += "python3-six"
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 06/10] python3-pytest-metadata: Upgrade 1.10.0 -> 1.11.0
  2021-01-06 22:06 ` [meta-python][PATCH 06/10] python3-pytest-metadata: Upgrade 1.10.0 -> 1.11.0 Leon Anavi
@ 2021-01-08 16:06   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-01-08 16:06 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-06 5:06 p.m., Leon Anavi wrote:
> - Provide a session fixture to include metadata in Junit XMLs
>    as property tags
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...st-metadata_1.10.0.bb => python3-pytest-metadata_1.11.0.bb} | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-pytest-metadata_1.10.0.bb => python3-pytest-metadata_1.11.0.bb} (72%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb b/meta-python/recipes-devtools/python/python3-pytest-metadata_1.11.0.bb
> similarity index 72%
> rename from meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb
> rename to meta-python/recipes-devtools/python/python3-pytest-metadata_1.11.0.bb
> index 70cc98f294..a1b62d16e4 100644
> --- a/meta-python/recipes-devtools/python/python3-pytest-metadata_1.10.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-pytest-metadata_1.11.0.bb
> @@ -4,8 +4,7 @@ DEPENDS += "${PYTHON_PN}-setuptools-scm-native"
>   LICENSE = "MPL-2.0"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=5d425c8f3157dbf212db2ec53d9e5132"
>   
> -SRC_URI[sha256sum] = "b7e6e0a45adacb17a03a97bf7a2ef60cc1f4e172bcce9732ce5e814191932315"
> -SRC_URI[md5sum] = "4fcf9764e6210c4555411fce8109e7cd"
> +SRC_URI[sha256sum] = "71b506d49d34e539cc3cfdb7ce2c5f072bea5c953320002c95968e0238f8ecf1"
>   
>   PYPI_PACKAGE = "pytest-metadata"
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 07/10] python3-smbus2: Upgrade 0.3.0 -> 0.4.0
  2021-01-06 22:06 ` [meta-python][PATCH 07/10] python3-smbus2: Upgrade 0.3.0 -> 0.4.0 Leon Anavi
@ 2021-01-08 16:07   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-01-08 16:07 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-06 5:06 p.m., Leon Anavi wrote:
> - Support for SMBus PEC (Packet Error Checking).
> - Support for Python 3 type hinting and mypy static type analysis.
>    Type stubs added to the project.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-smbus2_0.3.0.bb => python3-smbus2_0.4.0.bb}       | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-smbus2_0.3.0.bb => python3-smbus2_0.4.0.bb} (77%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb b/meta-python/recipes-devtools/python/python3-smbus2_0.4.0.bb
> similarity index 77%
> rename from meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
> rename to meta-python/recipes-devtools/python/python3-smbus2_0.4.0.bb
> index 7a61927206..1f6f61137e 100644
> --- a/meta-python/recipes-devtools/python/python3-smbus2_0.3.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-smbus2_0.4.0.bb
> @@ -6,8 +6,7 @@ LIC_FILES_CHKSUM = "file://${COMMON_LICENSE_DIR}/MIT;md5=0835ade698e0bcf8506ecda
>   
>   inherit pypi setuptools3
>   
> -SRC_URI[md5sum] = "d5ed5acc889b4770a84cc932853ed20a"
> -SRC_URI[sha256sum] = "210e66eebe4d0b1fe836b3ec2751841942e1c4918c0b429b20a0e20a222228b4"
> +SRC_URI[sha256sum] = "1b5c690715e1efab39e41038147dfba75afc72a10f76b3f0310d783e9f8a83a6"
>   
>   CLEANBROKEN = "1"
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 08/10] python3-cantools: Upgrade 35.5.0 -> 36.1.0
  2021-01-06 22:07 ` [meta-python][PATCH 08/10] python3-cantools: Upgrade 35.5.0 -> 36.1.0 Leon Anavi
@ 2021-01-08 16:07   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-01-08 16:07 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-06 5:07 p.m., Leon Anavi wrote:
> - Added sub command plot
> - plot test: parse output of cantools decode
> - added plot subcommand to readme
> - removed unneeded code
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-cantools_35.5.0.bb => python3-cantools_36.1.0.bb}  | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
>   rename meta-python/recipes-devtools/python/{python3-cantools_35.5.0.bb => python3-cantools_36.1.0.bb} (74%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-cantools_35.5.0.bb b/meta-python/recipes-devtools/python/python3-cantools_36.1.0.bb
> similarity index 74%
> rename from meta-python/recipes-devtools/python/python3-cantools_35.5.0.bb
> rename to meta-python/recipes-devtools/python/python3-cantools_36.1.0.bb
> index cb70ed3188..b2f3fd6d82 100644
> --- a/meta-python/recipes-devtools/python/python3-cantools_35.5.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-cantools_36.1.0.bb
> @@ -3,7 +3,7 @@ HOMEPAGE = "https://github.com/eerimoq/cantools"
>   LICENSE = "MIT"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=d9aa4ec07de78abae21c490c9ffe61bd"
>   
> -SRC_URI[sha256sum] = "ce26ab5d54762c314bedc35b407d498b8ae11069ab4d9251f8ac83f2956438f9"
> +SRC_URI[sha256sum] = "3c4c2652907c48e7013f825cc3068b5d47a38b62f01bd04aaab1d9f69a8f53f5"
>   
>   PYPI_PACKAGE = "cantools"
>   
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 09/10] python3-sentry-sdk: Upgrade 0.19.1 -> 0.19.5
  2021-01-06 22:07 ` [meta-python][PATCH 09/10] python3-sentry-sdk: Upgrade 0.19.1 -> 0.19.5 Leon Anavi
@ 2021-01-08 16:07   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-01-08 16:07 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-06 5:07 p.m., Leon Anavi wrote:
> - Fix two regressions added in 0.19.2 with regard to sampling
>    behavior when reading the sampling decision from headers.
> - Increase internal transport queue size and make it configurable.
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   ...thon3-sentry-sdk_0.19.1.bb => python3-sentry-sdk_0.19.5.bb} | 3 +--
>   1 file changed, 1 insertion(+), 2 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-sentry-sdk_0.19.1.bb => python3-sentry-sdk_0.19.5.bb} (72%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.5.bb
> similarity index 72%
> rename from meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb
> rename to meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.5.bb
> index 2da9908e34..bb960eed09 100644
> --- a/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.1.bb
> +++ b/meta-python/recipes-devtools/python/python3-sentry-sdk_0.19.5.bb
> @@ -5,8 +5,7 @@ HOMEPAGE = "https://github.com/getsentry/sentry-python"
>   LICENSE = "BSD-2-Clause"
>   LIC_FILES_CHKSUM = "file://LICENSE;md5=0c79f8d3c91fc847350efd28bfe0a341"
>   
> -SRC_URI[md5sum] = "1e6aabe30f4c86356d1d85a9beb0b05a"
> -SRC_URI[sha256sum] = "5cf36eb6b1dc62d55f3c64289792cbaebc8ffa5a9da14474f49b46d20caa7fc8"
> +SRC_URI[sha256sum] = "737a094e49a529dd0fdcaafa9e97cf7c3d5eb964bd229821d640bc77f3502b3f"
>   
>   PYPI_PACKAGE = "sentry-sdk"
>   inherit pypi setuptools3
>
> 
>

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

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

* Re: [oe] [meta-python][PATCH 10/10] python3-babel: Upgrade 2.8.0 -> 2.9.0
  2021-01-06 22:07 ` [meta-python][PATCH 10/10] python3-babel: Upgrade 2.8.0 -> 2.9.0 Leon Anavi
@ 2021-01-08 16:08   ` Trevor Gamblin
  0 siblings, 0 replies; 20+ messages in thread
From: Trevor Gamblin @ 2021-01-08 16:08 UTC (permalink / raw)
  To: Leon Anavi, openembedded-devel

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


On 2021-01-06 5:07 p.m., Leon Anavi wrote:
> - CLDR: Use CLDR 37
> - Dates: Handle ZoneInfo objects in get_timezone_location,
>    get_timezone_name
> - Numbers: Add group_separator feature in number formatting
> - Dates: Correct default Format().timedelta format to 'long' to
>    mute deprecation warnings
> - Import: Simplify iteration code in "import_cldr.py"
> - Import: Stop using deprecated ElementTree methods
>    "getchildren()" and "getiterator()"
> - Messages: Fix unicode printing error on Python 2 without TTY.
> - Messages: Introduce invariant that _invalid_pofile() takes
>    unicode line.
> - Tests: fix tests when using Python 3.9
> - Tests: Remove deprecated 'sudo: false' from Travis configuration
> - Tests: Support Py.test 6.x
> - Utilities: LazyProxy: Handle AttributeError in specified func
> - Utilities: Replace usage of parser.suite with ast.parse
>
> License-Update: Update year
>
> Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
Acked-by: Trevor Gamblin <trevor.gamblin@windriver.com>
> ---
>   .../{python3-babel_2.8.0.bb => python3-babel_2.9.0.bb}       | 5 ++---
>   1 file changed, 2 insertions(+), 3 deletions(-)
>   rename meta-python/recipes-devtools/python/{python3-babel_2.8.0.bb => python3-babel_2.9.0.bb} (70%)
>
> diff --git a/meta-python/recipes-devtools/python/python3-babel_2.8.0.bb b/meta-python/recipes-devtools/python/python3-babel_2.9.0.bb
> similarity index 70%
> rename from meta-python/recipes-devtools/python/python3-babel_2.8.0.bb
> rename to meta-python/recipes-devtools/python/python3-babel_2.9.0.bb
> index c69098b226..7248abf33b 100644
> --- a/meta-python/recipes-devtools/python/python3-babel_2.8.0.bb
> +++ b/meta-python/recipes-devtools/python/python3-babel_2.9.0.bb
> @@ -1,10 +1,9 @@
>   DESCRIPTION = "A collection of tools for internationalizing Python applications"
>   HOMEPAGE = "http://babel.edgewall.org/"
>   LICENSE = "BSD-3-Clause"
> -LIC_FILES_CHKSUM = "file://LICENSE;md5=942469df9305abb1c59e95f778310384"
> +LIC_FILES_CHKSUM = "file://LICENSE;md5=22a580b27e4ebf9689e466b63aedeb7f"
>   
> -SRC_URI[md5sum] = "6fad9772e75421969ddb41975483abdf"
> -SRC_URI[sha256sum] = "1aac2ae2d0d8ea368fa90906567f5c08463d98ade155c0c4bfedd6a0f7160e38"
> +SRC_URI[sha256sum] = "da031ab54472314f210b0adcff1588ee5d1d1d0ba4dbd07b94dba82bde791e05"
>   
>   PYPI_PACKAGE = "Babel"
>   
>
> 
>

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

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

end of thread, other threads:[~2021-01-08 16:08 UTC | newest]

Thread overview: 20+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-06 22:06 [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 Leon Anavi
2021-01-06 22:06 ` [meta-python][PATCH 02/10] python3-twine: Upgrade 3.2.0 -> 3.3.0 Leon Anavi
2021-01-08 16:05   ` [oe] " Trevor Gamblin
2021-01-06 22:06 ` [meta-python][PATCH 03/10] python3-humanfriendly: Upgrade 8.2 -> 9.1 Leon Anavi
2021-01-08 16:05   ` [oe] " Trevor Gamblin
2021-01-06 22:06 ` [meta-python][PATCH 04/10] python3-sqlalchemy: Upgrade 1.3.20 -> 1.3.22 Leon Anavi
2021-01-08 16:05   ` [oe] " Trevor Gamblin
2021-01-06 22:06 ` [meta-python][PATCH 05/10] python3-transitions: Upgrade 0.8.5 -> 0.8.6 Leon Anavi
2021-01-08 16:06   ` [oe] " Trevor Gamblin
2021-01-06 22:06 ` [meta-python][PATCH 06/10] python3-pytest-metadata: Upgrade 1.10.0 -> 1.11.0 Leon Anavi
2021-01-08 16:06   ` [oe] " Trevor Gamblin
2021-01-06 22:06 ` [meta-python][PATCH 07/10] python3-smbus2: Upgrade 0.3.0 -> 0.4.0 Leon Anavi
2021-01-08 16:07   ` [oe] " Trevor Gamblin
2021-01-06 22:07 ` [meta-python][PATCH 08/10] python3-cantools: Upgrade 35.5.0 -> 36.1.0 Leon Anavi
2021-01-08 16:07   ` [oe] " Trevor Gamblin
2021-01-06 22:07 ` [meta-python][PATCH 09/10] python3-sentry-sdk: Upgrade 0.19.1 -> 0.19.5 Leon Anavi
2021-01-08 16:07   ` [oe] " Trevor Gamblin
2021-01-06 22:07 ` [meta-python][PATCH 10/10] python3-babel: Upgrade 2.8.0 -> 2.9.0 Leon Anavi
2021-01-08 16:08   ` [oe] " Trevor Gamblin
2021-01-08 16:05 ` [oe] [meta-python][PATCH 01/10] python3-sympy: Upgrade 1.6.2 -> 1.7.1 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.