From dae8a46b235d11f9b6e08f9abd7c2b3553629c64 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Tue, 13 Apr 2021 12:48:32 +0300 Subject: [PATCH 1/8] python3-pyroute2: Upgrade 0.5.17 -> 0.5.18 Upgrade to release 0.5.18: - netlink: support zero length lladdr Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-pyroute2_0.5.17.bb => python3-pyroute2_0.5.18.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pyroute2_0.5.17.bb => python3-pyroute2_0.5.18.bb} (90%) diff --git a/meta-python/recipes-devtools/python/python3-pyroute2_0.5.17.bb b/meta-python/recipes-devtools/python/python3-pyroute2_0.5.18.bb similarity index 90% rename from meta-python/recipes-devtools/python/python3-pyroute2_0.5.17.bb rename to meta-python/recipes-devtools/python/python3-pyroute2_0.5.18.bb index 1d3d5a253a6..439d383f867 100644 --- a/meta-python/recipes-devtools/python/python3-pyroute2_0.5.17.bb +++ b/meta-python/recipes-devtools/python/python3-pyroute2_0.5.18.bb @@ -3,7 +3,7 @@ LICENSE = "GPLv2 & Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE.GPL.v2;md5=b234ee4d69f5fce4486a80fdaf4a4263 \ file://LICENSE.Apache.v2;md5=34281e312165f843a2b7d1f114fe65ce" -SRC_URI[sha256sum] = "12d51066ea5628a6fa76fc244f301a8eea5d25d71a9d664016976edfa3889733" +SRC_URI[sha256sum] = "08ac40cad52c0bb2e0f20087520599aa91fcce0b221dd26e9042330428810bc5" inherit setuptools3 pypi ptest From 9102f03dc4dd62fe7a320963c51257bc4d3fef67 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Tue, 13 Apr 2021 12:48:33 +0300 Subject: [PATCH 2/8] python3-sympy: Upgrade 1.7.1 -> 1.8 Upgrade to release 1.8: assumptions: - Q.infinite now correctly evaluates to True for oo, -oo, and zoo - Assumption predicates now correctly evaluates to None for S.NaN - Relational objects do not need to be wrapped by Q.is_true to be asked or refined anymore - Q.is_true wrapping over AppliedPredicate now just return the argument - refine arg(x) when x is real and nonzero - assumptions/relation module is introduced. This module implements binary relation as predicate - AskHandler(), register_handler() and remove_handler() are deprecated. Handler now must be multipledispatch instance - Predicate now uses a single handler which is multipledispatch instance - Predicate can now take multiple arguments - Predicate("...") now returns UndefinedPredicate instance. To define a predicate, you must make a subclass of Predicate calculus: - Using maximum with a piecewise expression over a domain no longer fails due to a bug fix in Piecewise.as_expr_set_pairs codegen: - allowing for multi-dimensional arrays as arguments/locals in c code generation - create_expand_pow_optimization is now customizable with respect to requirement on base - Support flattening of elementwise additions of array expressions - Fixes to array-expressions in order to properly work with ZeroArray and ZeroMatrix - Fixing matrix expression recognition from array-expressions - Minor fixes to the way the AST of array expressions is built - Add normalization of CodegenArrayDiagonal when it's nested with CodegenArrayPermuteDims and CodegenArrayContraction - Increased support for the normalization of array expressions and permutations of indices - parse_matrix_expression( ) is now able to parse traces of matrices combinatorics: - Added a section to the permutation docs about containment in permutation groups geometry: - Fix AssertError for vertical tangent - Geometric entities with symbolic coordinates will not be printed in SVG simplify: - Fix simplify calls sympify without rational parameter - TRmorrie now takes powers of cos terms into account tensor: - Introduced objects ArraySymbol and ArrayElement for array expressions equivalent to MatrixSymbol and MatrixElement in the matrix expression module - Add class ZeroArray for array expressions of zero-valued elements - Make Array differentiation(derive_by_array) work with non sympy expressions - Added tensordiagonal( ) function to perform diagonalization of array expressions - Adding an array with any other type now consistently gives NotImplemented utilities: - Added official support for using CuPy to GPU accelerate lambdify functions - Added Replacer class to simplify the creation of replacement expressions with MatchPy - Added tests for optional parameter in MatchPy patterns - Added string printers for MatchPy-compatible wildcards in sympy.utilities.matchpy_connector - minlex no longer accepts is_set or small arguments - minlex and least_rotation now accept key= arguments similar to sorted vector: - Fixed a bug with integral over ImplicitRegion objects other: - Expanding documentation to include all class members with docstrings License-Update: Update year Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-sympy_1.7.1.bb => python3-sympy_1.8.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-sympy_1.7.1.bb => python3-sympy_1.8.bb} (68%) diff --git a/meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb b/meta-python/recipes-devtools/python/python3-sympy_1.8.bb similarity index 68% rename from meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb rename to meta-python/recipes-devtools/python/python3-sympy_1.8.bb index d4508689f6a..3c05c763962 100644 --- a/meta-python/recipes-devtools/python/python3-sympy_1.7.1.bb +++ b/meta-python/recipes-devtools/python/python3-sympy_1.8.bb @@ -4,9 +4,9 @@ SUMMARY = "Computer algebra system (CAS) in Python" HOMEPAGE = "https://pypi.org/project/sympy/" LICENSE = "BSD" -LIC_FILES_CHKSUM = "file://LICENSE;md5=ebb06e9df8f57522b72d0edb0fcf83d4" +LIC_FILES_CHKSUM = "file://LICENSE;md5=2245824980a408ef1749391dfba32b3b" -SRC_URI[sha256sum] = "a3de9261e97535b83bb8607b0da2c7d03126650fafea2b2789657b229c246b2e" +SRC_URI[sha256sum] = "1ca588a9f6ce6a323c5592f9635159c2093572826668a1022c75c75bdf0297cb" inherit pypi setuptools3 From c2dd63c8010b12e9e5aabf41d62146ab493517c4 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Tue, 13 Apr 2021 12:48:34 +0300 Subject: [PATCH 3/8] python3-pandas: Upgrade 1.2.3 -> 1.2.4 Upgrade to release 1.2.4: - Fixed regression in DataFrame.sum() when min_count greater than the DataFrame shape was passed resulted in a ValueError - Fixed regression in DataFrame.to_json() raising AttributeError when run on PyPy - Fixed regression in (in)equality comparison of pd.NaT with a non-datetimelike numpy array returning a scalar instead of an array - Fixed regression in DataFrame.where() not returning a copy in the case of an all True condition - Fixed regression in DataFrame.replace() raising IndexError when regex was a multi-key dictionary - Fixed regression in repr of floats in an object column not respecting float_format when printed in the console or outputted through DataFrame.to_string(), DataFrame.to_html(), and DataFrame.to_latex() - Fixed regression in NumPy ufuncs such as np.add not passing through all arguments for DataFrame Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../python/{python3-pandas_1.2.3.bb => python3-pandas_1.2.4.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-pandas_1.2.3.bb => python3-pandas_1.2.4.bb} (88%) diff --git a/meta-python/recipes-devtools/python/python3-pandas_1.2.3.bb b/meta-python/recipes-devtools/python/python3-pandas_1.2.4.bb similarity index 88% rename from meta-python/recipes-devtools/python/python3-pandas_1.2.3.bb rename to meta-python/recipes-devtools/python/python3-pandas_1.2.4.bb index 8c36c21bb96..54fa910a981 100644 --- a/meta-python/recipes-devtools/python/python3-pandas_1.2.3.bb +++ b/meta-python/recipes-devtools/python/python3-pandas_1.2.4.bb @@ -6,7 +6,7 @@ HOMEPAGE = "http://pandas.pydata.org/" LICENSE = "BSD-3-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=c2a8f987b2ce77c368c6b3e1b5b10774" -SRC_URI[sha256sum] = "df6f10b85aef7a5bb25259ad651ad1cc1d6bb09000595cab47e718cbac250b1d" +SRC_URI[sha256sum] = "649ecab692fade3cbfcf967ff936496b0cfba0af00a55dfaacd82bdda5cb2279" inherit pypi setuptools3 From 214dcf978251f402d4f427c8897af4272e167577 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Tue, 13 Apr 2021 12:48:35 +0300 Subject: [PATCH 4/8] python3-humanize: Upgrade 3.4.0 -> 3.4.1 Upgrade to release 3.4.1: - Add Catalan binary translation Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-humanize_3.4.0.bb => python3-humanize_3.4.1.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-humanize_3.4.0.bb => python3-humanize_3.4.1.bb} (80%) diff --git a/meta-python/recipes-devtools/python/python3-humanize_3.4.0.bb b/meta-python/recipes-devtools/python/python3-humanize_3.4.1.bb similarity index 80% rename from meta-python/recipes-devtools/python/python3-humanize_3.4.0.bb rename to meta-python/recipes-devtools/python/python3-humanize_3.4.1.bb index f9c22e89148..5ffc2b59380 100644 --- a/meta-python/recipes-devtools/python/python3-humanize_3.4.0.bb +++ b/meta-python/recipes-devtools/python/python3-humanize_3.4.1.bb @@ -5,7 +5,7 @@ SECTION = "devel/python" LICENSE = "MIT" LIC_FILES_CHKSUM = "file://LICENCE;md5=4ecc42519e84f6f3e23529464df7bd1d" -SRC_URI[sha256sum] = "096b9ae6d1d56321d3d81f17117c2068179d7b4f7f73ba4baf302726923b48ec" +SRC_URI[sha256sum] = "6e04cdd75d66074c34ff93c30a2ad6d19d91202a65c1bd400b2edeedae399bda" inherit pypi setuptools3 From 1b164ec26d635ffc4c0561c5ac6ca0ce0e411a1b Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 14 Apr 2021 11:35:22 +0300 Subject: [PATCH 5/8] python3-decorator: Upgrade 5.0.6 -> 5.0.7 Upgrade to release 5.0.7: - The decorator module was not passing correctly the defaults inside the *args tuple - Fixed some mispellings in the documentation - Integrated codespell in the CI Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-decorator_5.0.6.bb => python3-decorator_5.0.7.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-decorator_5.0.6.bb => python3-decorator_5.0.7.bb} (86%) diff --git a/meta-python/recipes-devtools/python/python3-decorator_5.0.6.bb b/meta-python/recipes-devtools/python/python3-decorator_5.0.7.bb similarity index 86% rename from meta-python/recipes-devtools/python/python3-decorator_5.0.6.bb rename to meta-python/recipes-devtools/python/python3-decorator_5.0.7.bb index 9e837b719ed..3131b2bc0bc 100644 --- a/meta-python/recipes-devtools/python/python3-decorator_5.0.6.bb +++ b/meta-python/recipes-devtools/python/python3-decorator_5.0.7.bb @@ -9,7 +9,7 @@ decorator, just because you can." LICENSE = "BSD-2-Clause" LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=be2fd2007972bf96c08af3293d728b22" -SRC_URI[sha256sum] = "f2e71efb39412bfd23d878e896a51b07744f2e2250b2e87d158e76828c5ae202" +SRC_URI[sha256sum] = "6f201a6c4dac3d187352661f508b9364ec8091217442c9478f1f83c003a0f060" inherit pypi setuptools3 From c37078818dfa59e222a844c9d753a2987166f7d1 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 14 Apr 2021 11:35:23 +0300 Subject: [PATCH 6/8] python3-colorlog: Upgrade 4.8.0 -> 5.0.1 Upgrade to release 5.0.1: - Fix colorlog.basicConfig does not accept '{' style - Fix linter errors License-Update: Update year Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-colorlog_4.8.0.bb => python3-colorlog_5.0.1.bb} | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) rename meta-python/recipes-devtools/python/{python3-colorlog_4.8.0.bb => python3-colorlog_5.0.1.bb} (54%) diff --git a/meta-python/recipes-devtools/python/python3-colorlog_4.8.0.bb b/meta-python/recipes-devtools/python/python3-colorlog_5.0.1.bb similarity index 54% rename from meta-python/recipes-devtools/python/python3-colorlog_4.8.0.bb rename to meta-python/recipes-devtools/python/python3-colorlog_5.0.1.bb index 6f9b8d47a49..61b8152a1e0 100644 --- a/meta-python/recipes-devtools/python/python3-colorlog_4.8.0.bb +++ b/meta-python/recipes-devtools/python/python3-colorlog_5.0.1.bb @@ -1,10 +1,10 @@ DESCRIPTION = "A colored formatter for the python logging module" HOMEPAGE = "https://github.com/borntyping/python-colorlog" LICENSE = "MIT" -LIC_FILES_CHKSUM = "file://LICENSE;md5=85a1d478cd35d62763a1419e948bdde4" +LIC_FILES_CHKSUM = "file://LICENSE;md5=5c3c6ebdec7792ae12df8d1c0a46b26a" inherit pypi setuptools3 PYPI_PACKAGE = "colorlog" -SRC_URI[sha256sum] = "59b53160c60902c405cdec28d38356e09d40686659048893e026ecbd589516b1" +SRC_URI[sha256sum] = "f17c013a06962b02f4449ee07cfdbe6b287df29efc2c9a1515b4a376f4e588ea" From 00bc0321699c83f82781605e1983e3ba756d1741 Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 14 Apr 2021 11:35:24 +0300 Subject: [PATCH 7/8] python3-google-api-python-client: Upgrade 2.1.0 -> 2.2.0 Upgrade to release 2.2.0: - Adds support for errors.py to also use 'errors' for error_details Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- ...lient_2.1.0.bb => python3-google-api-python-client_2.2.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-google-api-python-client_2.1.0.bb => python3-google-api-python-client_2.2.0.bb} (78%) diff --git a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.1.0.bb b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.2.0.bb similarity index 78% rename from meta-python/recipes-devtools/python/python3-google-api-python-client_2.1.0.bb rename to meta-python/recipes-devtools/python/python3-google-api-python-client_2.2.0.bb index 11b94b3fcda..da7cae6c3de 100644 --- a/meta-python/recipes-devtools/python/python3-google-api-python-client_2.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-google-api-python-client_2.2.0.bb @@ -4,6 +4,6 @@ HOMEPAGE = "https://github.com/googleapis/google-api-python-client" LICENSE = "Apache-2.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=94023d14f6b58272fd885e4e3f2f08b3" -SRC_URI[sha256sum] = "f9ac377efe69571aea1acc9e15760d4204aca23c4464eb63f963ae4defc95d97" +SRC_URI[sha256sum] = "29447c8e95c23ae76fcf9817432f5ed015495513abeac564905640a0ef7d1898" inherit pypi setuptools3 From dbec97fcb32b6b0296c5b21fcae789677bb8114e Mon Sep 17 00:00:00 2001 From: Leon Anavi Date: Wed, 14 Apr 2021 11:35:25 +0300 Subject: [PATCH 8/8] python3-croniter: Upgrade 1.0.11 -> 1.0.12 Upgrade to release 1.0.12: - Add support for hashed/random/keyword expressions - Review support support for hashed/random/keyword expression and add expanders reactor Signed-off-by: Leon Anavi Signed-off-by: Khem Raj Signed-off-by: Trevor Gamblin --- .../{python3-croniter_1.0.11.bb => python3-croniter_1.0.12.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-croniter_1.0.11.bb => python3-croniter_1.0.12.bb} (78%) diff --git a/meta-python/recipes-devtools/python/python3-croniter_1.0.11.bb b/meta-python/recipes-devtools/python/python3-croniter_1.0.12.bb similarity index 78% rename from meta-python/recipes-devtools/python/python3-croniter_1.0.11.bb rename to meta-python/recipes-devtools/python/python3-croniter_1.0.12.bb index ca9bf71a560..fd70468953e 100644 --- a/meta-python/recipes-devtools/python/python3-croniter_1.0.11.bb +++ b/meta-python/recipes-devtools/python/python3-croniter_1.0.12.bb @@ -5,7 +5,7 @@ LIC_FILES_CHKSUM = "file://docs/LICENSE;md5=b8ee59850b882cbf623188489ea748e2" PYPI_PACKAGE = "croniter" -SRC_URI[sha256sum] = "cd89bcbed4d79f56bbf2c9415c2bbbfd09fadc8a59dbae3898fbca5bab34103d" +SRC_URI[sha256sum] = "3603ef0d60fc6df98ce356c01529de90b06a002379b9f5e9eae981fb9c1fd936" inherit pypi setuptools3