All of lore.kernel.org
 help / color / mirror / Atom feed
* [meta-python][PATCH 1/5] python3-semantic-version: Upgrade 2.8.5 -> 2.9.0
@ 2022-03-02 22:27 Leon Anavi
  2022-03-02 22:27 ` [meta-python][PATCH 2/5] python3-networkx: Upgrade 2.6.3 -> 2.7 Leon Anavi
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Leon Anavi @ 2022-03-02 22:27 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.9.0:

- Add support for Django 3.1, 3.2, 4.0
- Add support for Python 3.7 / 3.8 / 3.9 / 3.10

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

diff --git a/meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb b/meta-python/recipes-devtools/python/python3-semantic-version_2.9.0.bb
similarity index 81%
rename from meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb
rename to meta-python/recipes-devtools/python/python3-semantic-version_2.9.0.bb
index b8541ff57..ee635871b 100644
--- a/meta-python/recipes-devtools/python/python3-semantic-version_2.8.5.bb
+++ b/meta-python/recipes-devtools/python/python3-semantic-version_2.9.0.bb
@@ -4,7 +4,7 @@ HOMEPAGE = "https://github.com/rbarrois/python-semanticversion"
 LICENSE = "BSD-2-Clause"
 LIC_FILES_CHKSUM = "file://LICENSE;md5=4fb31e3c1c7eeb8b5e8c07657cdd54e2"
 
-SRC_URI[sha256sum] = "d2cb2de0558762934679b9a104e82eca7af448c9f4974d1f3eeccff651df8a54"
+SRC_URI[sha256sum] = "abf54873553e5e07a6fd4d5f653b781f5ae41297a493666b59dcf214006a12b2"
 
 PYPI_PACKAGE = "semantic_version"
 inherit pypi setuptools3
-- 
2.30.2



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

* [meta-python][PATCH 2/5] python3-networkx: Upgrade 2.6.3 -> 2.7
  2022-03-02 22:27 [meta-python][PATCH 1/5] python3-semantic-version: Upgrade 2.8.5 -> 2.9.0 Leon Anavi
@ 2022-03-02 22:27 ` Leon Anavi
  2022-03-02 22:27 ` [meta-python][PATCH 3/5] python3-h11: Upgrade 0.12.0 -> 0.13.0 Leon Anavi
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2022-03-02 22:27 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 2.7:

- Dropped support for Python 3.7
- Added the Asadpour algorithm for solving the asymmetric traveling
  salesman problem
- Removed all internal usage of the numpy.matrix class, and added a
  FutureWarning to all functions that return a numpy.matrix
  instance
- Added support for the scipy.sparse array interface
- Added generic dtype support to
  ~networkx.convert_matrix.to_numpy_array
- Added support for computing betweenness centrality on multigraphs
- Added support for directed graphs and multigraphs to
  greedy_modularity_communities

License-Update: Update year

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

diff --git a/meta-python/recipes-devtools/python/python3-networkx_2.6.3.bb b/meta-python/recipes-devtools/python/python3-networkx_2.7.bb
similarity index 76%
rename from meta-python/recipes-devtools/python/python3-networkx_2.6.3.bb
rename to meta-python/recipes-devtools/python/python3-networkx_2.7.bb
index 1608e0380..10030074d 100644
--- a/meta-python/recipes-devtools/python/python3-networkx_2.6.3.bb
+++ b/meta-python/recipes-devtools/python/python3-networkx_2.7.bb
@@ -1,9 +1,9 @@
 DESCRIPTION = "Python package for creating and manipulating graphs and networks"
 HOMEPAGE = "http://networkx.github.io/"
 LICENSE = "BSD-3-Clause"
-LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=5cfa4d8f5881e0d053bb497130b9c73a"
+LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=44614b6df7cf3c19be69d0a945e29904"
 
-SRC_URI[sha256sum] = "c0946ed31d71f1b732b5aaa6da5a0388a345019af232ce2f49c766e2d6795c51"
+SRC_URI[sha256sum] = "effb7d9cd5c36e1e0d33f42a3aef5badde5030535826a367d5cf608a170af515"
 
 inherit pypi setuptools3
 
-- 
2.30.2



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

* [meta-python][PATCH 3/5] python3-h11: Upgrade 0.12.0 -> 0.13.0
  2022-03-02 22:27 [meta-python][PATCH 1/5] python3-semantic-version: Upgrade 2.8.5 -> 2.9.0 Leon Anavi
  2022-03-02 22:27 ` [meta-python][PATCH 2/5] python3-networkx: Upgrade 2.6.3 -> 2.7 Leon Anavi
@ 2022-03-02 22:27 ` Leon Anavi
  2022-03-02 22:27 ` [meta-python][PATCH 4/5] python3-humanize: Upgrade 3.14.0 -> 4.0.0 Leon Anavi
  2022-03-02 22:27 ` [meta-python][PATCH 5/5] python3-typed-ast: Upgrade 1.4.3 -> 1.5.2 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2022-03-02 22:27 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 0.13.0:

- Clarify that the Headers class is a Sequence and inherit from
  the collections Sequence abstract base class to also indicate
  this (and gain the mixin methods)
- Switch event classes to dataclasses for easier typing and
  slightly  improved performan
- Shorten traceback of protocol errors for easier readability
- Add typing including a PEP 561 marker for usage by type checkers
- Expand the allowed status codes to [0, 999] from [0, 600]

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

diff --git a/meta-python/recipes-devtools/python/python3-h11_0.12.0.bb b/meta-python/recipes-devtools/python/python3-h11_0.13.0.bb
similarity index 73%
rename from meta-python/recipes-devtools/python/python3-h11_0.12.0.bb
rename to meta-python/recipes-devtools/python/python3-h11_0.13.0.bb
index 4cd0d4de7..afc643965 100644
--- a/meta-python/recipes-devtools/python/python3-h11_0.12.0.bb
+++ b/meta-python/recipes-devtools/python/python3-h11_0.13.0.bb
@@ -5,4 +5,4 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=f5501d19c3116f4aaeef89369f458693"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "47222cb6067e4a307d535814917cd98fd0a57b6788ce715755fa2b6c28b56042"
+SRC_URI[sha256sum] = "70813c1135087a248a4d38cc0e1a0181ffab2188141a93eaf567940c3957ff06"
-- 
2.30.2



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

* [meta-python][PATCH 4/5] python3-humanize: Upgrade 3.14.0 -> 4.0.0
  2022-03-02 22:27 [meta-python][PATCH 1/5] python3-semantic-version: Upgrade 2.8.5 -> 2.9.0 Leon Anavi
  2022-03-02 22:27 ` [meta-python][PATCH 2/5] python3-networkx: Upgrade 2.6.3 -> 2.7 Leon Anavi
  2022-03-02 22:27 ` [meta-python][PATCH 3/5] python3-h11: Upgrade 0.12.0 -> 0.13.0 Leon Anavi
@ 2022-03-02 22:27 ` Leon Anavi
  2022-03-02 22:27 ` [meta-python][PATCH 5/5] python3-typed-ast: Upgrade 1.4.3 -> 1.5.2 Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2022-03-02 22:27 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 4.0.0:

- Drop support for Python 3.6
- Remove deprecated VERSION, use version instead
- Remove when from naturaldelta() and allow largest timedelta
- Remove deprecated private function aliases

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

diff --git a/meta-python/recipes-devtools/python/python3-humanize_3.14.0.bb b/meta-python/recipes-devtools/python/python3-humanize_4.0.0.bb
similarity index 82%
rename from meta-python/recipes-devtools/python/python3-humanize_3.14.0.bb
rename to meta-python/recipes-devtools/python/python3-humanize_4.0.0.bb
index 6b2fd3ad6..f84034f3c 100644
--- a/meta-python/recipes-devtools/python/python3-humanize_3.14.0.bb
+++ b/meta-python/recipes-devtools/python/python3-humanize_4.0.0.bb
@@ -5,7 +5,7 @@ SECTION = "devel/python"
 LICENSE = "MIT"
 LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d"
 
-SRC_URI[sha256sum] = "60dd8c952b1df1ad83f0903844dec50a34ba7a04eea22a6b14204ffb62dbb0a4"
+SRC_URI[sha256sum] = "ee1f872fdfc7d2ef4a28d4f80ddde9f96d36955b5d6b0dac4bdeb99502bddb00"
 
 inherit pypi setuptools3
 
-- 
2.30.2



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

* [meta-python][PATCH 5/5] python3-typed-ast: Upgrade 1.4.3 -> 1.5.2
  2022-03-02 22:27 [meta-python][PATCH 1/5] python3-semantic-version: Upgrade 2.8.5 -> 2.9.0 Leon Anavi
                   ` (2 preceding siblings ...)
  2022-03-02 22:27 ` [meta-python][PATCH 4/5] python3-humanize: Upgrade 3.14.0 -> 4.0.0 Leon Anavi
@ 2022-03-02 22:27 ` Leon Anavi
  3 siblings, 0 replies; 5+ messages in thread
From: Leon Anavi @ 2022-03-02 22:27 UTC (permalink / raw)
  To: openembedded-devel; +Cc: Leon Anavi

Upgrade to release 1.5.2:

- Add support for building aarch64 wheels
- Remove update process document
- Port ast27 to Python 3.11
- Define _PyUnicode_DecodeUnicodeEscape even on Python 3.6+

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

diff --git a/meta-python/recipes-devtools/python/python3-typed-ast_1.4.3.bb b/meta-python/recipes-devtools/python/python3-typed-ast_1.5.2.bb
similarity index 78%
rename from meta-python/recipes-devtools/python/python3-typed-ast_1.4.3.bb
rename to meta-python/recipes-devtools/python/python3-typed-ast_1.5.2.bb
index c482251b8..55cd78ce8 100644
--- a/meta-python/recipes-devtools/python/python3-typed-ast_1.4.3.bb
+++ b/meta-python/recipes-devtools/python/python3-typed-ast_1.5.2.bb
@@ -7,6 +7,6 @@ PYPI_PACKAGE = "typed_ast"
 
 inherit pypi setuptools3
 
-SRC_URI[sha256sum] = "fb1bbeac803adea29cedd70781399c99138358c26d05fcbd23c13016b7f5ec65"
+SRC_URI[sha256sum] = "525a2d4088e70a9f75b08b3f87a51acc9cde640e19cc523c7e41aa355564ae27"
 
 BBCLASSEXTEND = "native"
-- 
2.30.2



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

end of thread, other threads:[~2022-03-02 22:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-02 22:27 [meta-python][PATCH 1/5] python3-semantic-version: Upgrade 2.8.5 -> 2.9.0 Leon Anavi
2022-03-02 22:27 ` [meta-python][PATCH 2/5] python3-networkx: Upgrade 2.6.3 -> 2.7 Leon Anavi
2022-03-02 22:27 ` [meta-python][PATCH 3/5] python3-h11: Upgrade 0.12.0 -> 0.13.0 Leon Anavi
2022-03-02 22:27 ` [meta-python][PATCH 4/5] python3-humanize: Upgrade 3.14.0 -> 4.0.0 Leon Anavi
2022-03-02 22:27 ` [meta-python][PATCH 5/5] python3-typed-ast: Upgrade 1.4.3 -> 1.5.2 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.