All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-astroid: Upgrade 2.6.5 -> 2.6.6
@ 2021-08-09 13:42 Leon Anavi
  2021-08-09 13:42 ` [meta-python][PATCH 2/5] python3-gast: Upgrade 0.5.1 -> 0.5.2 Leon Anavi
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-09 13:42 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.6.6:

- Added support to infer return type of typing.cast()
- Fix variable lookup's handling of exclusive statements
- Fix variable lookup's handling of function parameters
- Fix variable lookup's handling of except clause variables
- Fix handling of classes with duplicated bases with the same name

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

diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.6.5.bb b/meta-python/recipes-devtools/python/python3-astroid_2.6.6.bb
similarity index 89%
rename from meta-python/recipes-devtools/python/python3-astroid_2.6.5.bb
rename to meta-python/recipes-devtools/python/python3-astroid_2.6.6.bb
index 5d7ef8f29b..10851039b3 100644
--- a/meta-python/recipes-devtools/python/python3-astroid_2.6.5.bb
+++ b/meta-python/recipes-devtools/python/python3-astroid_2.6.6.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "LGPL-2.1"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a70cf540abf41acb644ac3b621b2fad1"
 
-SRC_URI[sha256sum] = "83e494b02d75d07d4e347b27c066fd791c0c74fc96c613d1ea3de0c82c48168f"
+SRC_URI[sha256sum] = "3975a0bd5373bdce166e60c851cfcbaf21ee96de80ec518c1f4cb3e94c3fb334"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 2/5] python3-gast: Upgrade 0.5.1 -> 0.5.2
  2021-08-09 13:42 [meta-python][PATCH 1/5] python3-astroid: Upgrade 2.6.5 -> 2.6.6 Leon Anavi
@ 2021-08-09 13:42 ` Leon Anavi
  2021-08-09 13:42 ` [meta-python][PATCH 3/5] python3-greenlet: Upgrade 1.1.0 -> 1.1.1 Leon Anavi
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-09 13:42 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.5.2:

- Test field count more accurately

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

diff --git a/meta-python/recipes-devtools/python/python3-gast_0.5.1.bb b/meta-python/recipes-devtools/python/python3-gast_0.5.2.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-gast_0.5.1.bb
rename to meta-python/recipes-devtools/python/python3-gast_0.5.2.bb
index eda18602fb..d318973a17 100644
--- a/meta-python/recipes-devtools/python/python3-gast_0.5.1.bb
+++ b/meta-python/recipes-devtools/python/python3-gast_0.5.2.bb
@@ -4,7 +4,7 @@ SECTION = "devel/python"
 LICENSE = "BSD-3-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=a3ad9b6802e713fc5e307e1230f1ea90"
 
-SRC_URI[sha256sum] = "b00e63584db482ffe6107b5832042bbe5c5bf856e3c7279b6e93201b3dcfcb46"
+SRC_URI[sha256sum] = "f81fcefa8b982624a31c9e4ec7761325a88a0eba60d36d1da90e47f8fe3c67f7"
 
 inherit pypi setuptools3
 
-- 
2.17.1


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

* [meta-python][PATCH 3/5] python3-greenlet: Upgrade 1.1.0 -> 1.1.1
  2021-08-09 13:42 [meta-python][PATCH 1/5] python3-astroid: Upgrade 2.6.5 -> 2.6.6 Leon Anavi
  2021-08-09 13:42 ` [meta-python][PATCH 2/5] python3-gast: Upgrade 0.5.1 -> 0.5.2 Leon Anavi
@ 2021-08-09 13:42 ` Leon Anavi
  2021-08-09 13:42 ` [meta-python][PATCH 4/5] python3-bitarray: Upgrade 2.2.3 -> 2.2.5 Leon Anavi
  2021-08-09 13:42 ` [meta-python][PATCH 5/5] python3-send2trash: Upgrade 1.7.1 -> 1.8.0 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-09 13:42 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.1.1:

- Provide Windows binary wheels for Python 3.10 (64-bit only).
- Update Python 3.10 wheels to be built against 3.10rc1, where
  applicable.

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

diff --git a/meta-python/recipes-devtools/python/python3-greenlet_1.1.0.bb b/meta-python/recipes-devtools/python/python3-greenlet_1.1.1.bb
similarity index 79%
rename from meta-python/recipes-devtools/python/python3-greenlet_1.1.0.bb
rename to meta-python/recipes-devtools/python/python3-greenlet_1.1.1.bb
index 0f0f18fe35..9d014ec7a7 100644
--- a/meta-python/recipes-devtools/python/python3-greenlet_1.1.0.bb
+++ b/meta-python/recipes-devtools/python/python3-greenlet_1.1.1.bb
@@ -4,6 +4,6 @@ LICENSE = "MIT & PSF"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=e95668d68e4329085c7ab3535e6a7aee \
                     file://LICENSE.PSF;md5=c106931d9429eda0492617f037b8f69a"
 
-SRC_URI[sha256sum] = "c87df8ae3f01ffb4483c796fe1b15232ce2b219f0b18126948616224d3f658ee"
+SRC_URI[sha256sum] = "c0f22774cd8294078bdf7392ac73cf00bfa1e5e0ed644bd064fdabc5f2a2f481"
 
 inherit pypi distutils3 setuptools3
-- 
2.17.1


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

* [meta-python][PATCH 4/5] python3-bitarray: Upgrade 2.2.3 -> 2.2.5
  2021-08-09 13:42 [meta-python][PATCH 1/5] python3-astroid: Upgrade 2.6.5 -> 2.6.6 Leon Anavi
  2021-08-09 13:42 ` [meta-python][PATCH 2/5] python3-gast: Upgrade 0.5.1 -> 0.5.2 Leon Anavi
  2021-08-09 13:42 ` [meta-python][PATCH 3/5] python3-greenlet: Upgrade 1.1.0 -> 1.1.1 Leon Anavi
@ 2021-08-09 13:42 ` Leon Anavi
  2021-08-09 13:42 ` [meta-python][PATCH 5/5] python3-send2trash: Upgrade 1.7.1 -> 1.8.0 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-09 13:42 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.2.5:

- speedup `find_bit()` and `find_last()` using uint64 checking,
  this means a speedup for `.find()`, `.index()`, `.search()` and
  `util.rindex()`
- add optional start and stop arguments to `.bytereverse()`
- add example to illustrate how unaligned copying works internally
- add documentation
- add tests

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

diff --git a/meta-python/recipes-devtools/python/python3-bitarray_2.2.3.bb b/meta-python/recipes-devtools/python/python3-bitarray_2.2.5.bb
similarity index 77%
rename from meta-python/recipes-devtools/python/python3-bitarray_2.2.3.bb
rename to meta-python/recipes-devtools/python/python3-bitarray_2.2.5.bb
index b72ca3b560..f8e2489070 100644
--- a/meta-python/recipes-devtools/python/python3-bitarray_2.2.3.bb
+++ b/meta-python/recipes-devtools/python/python3-bitarray_2.2.5.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] = "b5d707d9c4aa75e684e21ff1848b234f3d2ff41d5038db89e2465e5527f90c68"
+SRC_URI[sha256sum] = "efb2dc83f0acb832a94af3687eea558d72512cf2e54a64fca56a10aacf57934c"
 
 inherit setuptools3 pypi
 
-- 
2.17.1


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

* [meta-python][PATCH 5/5] python3-send2trash: Upgrade 1.7.1 -> 1.8.0
  2021-08-09 13:42 [meta-python][PATCH 1/5] python3-astroid: Upgrade 2.6.5 -> 2.6.6 Leon Anavi
                   ` (2 preceding siblings ...)
  2021-08-09 13:42 ` [meta-python][PATCH 4/5] python3-bitarray: Upgrade 2.2.3 -> 2.2.5 Leon Anavi
@ 2021-08-09 13:42 ` Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2021-08-09 13:42 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.8.0:

- Add compatibility with pathlib paths
- Fix thread compatibility of modern windows implementation
- Fix handling of UNC names in legacy windows implementation

Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
---
 ...{python3-send2trash_1.7.1.bb => python3-send2trash_1.8.0.bb} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
 rename meta-python/recipes-extended/send2trash/{python3-send2trash_1.7.1.bb => python3-send2trash_1.8.0.bb} (71%)

diff --git a/meta-python/recipes-extended/send2trash/python3-send2trash_1.7.1.bb b/meta-python/recipes-extended/send2trash/python3-send2trash_1.8.0.bb
similarity index 71%
rename from meta-python/recipes-extended/send2trash/python3-send2trash_1.7.1.bb
rename to meta-python/recipes-extended/send2trash/python3-send2trash_1.8.0.bb
index d3554c8031..76f59e2853 100644
--- a/meta-python/recipes-extended/send2trash/python3-send2trash_1.7.1.bb
+++ b/meta-python/recipes-extended/send2trash/python3-send2trash_1.8.0.bb
@@ -4,6 +4,6 @@ LIC_FILES_CHKSUM = "file://LICENSE;md5=a02659c2d5f4cc626e4dcf6504b865eb"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "17730aa0a33ab82ed6ca76be3bb25f0433d0014f1ccf63c979bab13a5b9db2b2"
+SRC_URI[sha256sum] = "d2c24762fd3759860a0aff155e45871447ea58d2be6bdd39b5c8f966a0c99c2d"
 
 PYPI_PACKAGE = "Send2Trash"
-- 
2.17.1


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

end of thread, other threads:[~2021-08-09 13:42 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-08-09 13:42 [meta-python][PATCH 1/5] python3-astroid: Upgrade 2.6.5 -> 2.6.6 Leon Anavi
2021-08-09 13:42 ` [meta-python][PATCH 2/5] python3-gast: Upgrade 0.5.1 -> 0.5.2 Leon Anavi
2021-08-09 13:42 ` [meta-python][PATCH 3/5] python3-greenlet: Upgrade 1.1.0 -> 1.1.1 Leon Anavi
2021-08-09 13:42 ` [meta-python][PATCH 4/5] python3-bitarray: Upgrade 2.2.3 -> 2.2.5 Leon Anavi
2021-08-09 13:42 ` [meta-python][PATCH 5/5] python3-send2trash: Upgrade 1.7.1 -> 1.8.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.