From patchwork Mon Sep 19 12:41:39 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 12976 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 13AFAECAAD3 for ; Mon, 19 Sep 2022 12:41:58 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web12.19255.1663591313145051087 for ; Mon, 19 Sep 2022 05:41:54 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=snauSnYT; spf=permerror, err=parse error for token &{10 18 spf.securedserverspace.com}: parse error for token &{10 18 _netblocks4.securedserverspace.com}: limit exceeded (domain: konsulko.com, ip: 79.124.30.14, mailfrom: leon.anavi@konsulko.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=anavi.org; s=default; h=Content-Transfer-Encoding:MIME-Version:Message-Id:Date:Subject: Cc:To:From:Sender:Reply-To:Content-Type:Content-ID:Content-Description: Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID: In-Reply-To:References:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=u3+VcS7EONL4hnFhpz0aVYuJQcRzMjZqLXpFVyCKkl4=; b=snauSnYTNejsI1AOpWr2fbACCV OMUSXhuCZpWYemFGOBhKUKP2TkHYqB2Jh0vTKrjlWBTB0tRn0YZ4sB1vuMYke4/bjgAIDESxL9aA4 7UW/HVMPfF3cZIpcRPZwiDpkDjw565b3A6UtcRHOwIiOSZAd13Xuc/xQYdiFq2s1dX2/wAfs+KCLj kpmqG6Vos5WQku5Xn7eHmu7fJdo/7CsHH+0057bBPLg3+t5zsUrszi0QxkxfADWdpXqkyB38ao9jz RiS6CgmK1s30r6EgYn59BkYFrf4/ew0rpbBzOKdP7GPYH81fxTOb/eUesVmRsuViJSX48lv1Qh7Pu XSheEygA==; Received: from lan.nucleusys.com ([92.247.61.126]:41394 helo=tone.k.g) by voyager.superhosting.bg with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.95) (envelope-from ) id 1oaG6F-0000x1-Td; Mon, 19 Sep 2022 15:41:51 +0300 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 1/4] python3-joblib: Upgrade 1.1.0 -> 1.2.0 Date: Mon, 19 Sep 2022 15:41:39 +0300 Message-Id: <20220919124142.4025940-1-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 MIME-Version: 1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - voyager.superhosting.bg X-AntiAbuse: Original Domain - lists.openembedded.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - konsulko.com X-Get-Message-Sender-Via: voyager.superhosting.bg: authenticated_id: leon@anavi.org X-Authenticated-Sender: voyager.superhosting.bg: leon@anavi.org X-Source: X-Source-Args: X-Source-Dir: List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Mon, 19 Sep 2022 12:41:58 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/98863 Upgrade to release 1.2.0: - Fix a security issue where eval(pre_dispatch) could potentially run arbitrary code. Now only basic numerics are supported. - Make sure that joblib works even when multiprocessing is not available, for instance with Pyodide. - Avoid unnecessary warnings when workers and main process delete the temporary memmap folder contents concurrently. - Fix memory alignment bug for pickles containing numpy arrays. This is especially important when loading the pickle with mmap_mode != None as the resulting numpy.memmap object would not be able to correct the misalignment without performing a memory copy. This bug would cause invalid computation and segmentation faults with native code that would directly access the underlying data buffer of a numpy array, for instance C/C++/Cython code compiled with older GCC versions or some old OpenBLAS written in platform specific assembly. - Vendor cloudpickle 2.2.0 which adds support for PyPy 3.8+. - Vendor loky 3.3.0 which fixes several bugs including: * robustly forcibly terminating worker processes in case of a crash * avoiding leaking worker processes in case of nested loky parallel calls * reliability spawn the correct number of reusable workers Signed-off-by: Leon Anavi --- .../python/{python3-joblib_1.1.0.bb => python3-joblib_1.2.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-joblib_1.1.0.bb => python3-joblib_1.2.0.bb} (80%) diff --git a/meta-python/recipes-devtools/python/python3-joblib_1.1.0.bb b/meta-python/recipes-devtools/python/python3-joblib_1.2.0.bb similarity index 80% rename from meta-python/recipes-devtools/python/python3-joblib_1.1.0.bb rename to meta-python/recipes-devtools/python/python3-joblib_1.2.0.bb index e69cfefd1..ec02265d1 100644 --- a/meta-python/recipes-devtools/python/python3-joblib_1.1.0.bb +++ b/meta-python/recipes-devtools/python/python3-joblib_1.2.0.bb @@ -4,7 +4,7 @@ LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=2e481820abf0a70a18011a30153df066" inherit setuptools3 pypi -SRC_URI[sha256sum] = "4158fcecd13733f8be669be0683b96ebdbbd38d23559f54dca7205aea1bf1e35" +SRC_URI[sha256sum] = "e1cee4a79e4af22881164f218d4311f60074197fb707e082e803b61f6d137018" RDEPENDS:${PN} += " \ python3-asyncio \ From patchwork Mon Sep 19 12:41:40 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 12975 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 14181C6FA8B for ; Mon, 19 Sep 2022 12:41:58 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web10.19122.1663591314737109763 for ; Mon, 19 Sep 2022 05:41:56 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=fGmWZkr9; spf=permerror, err=parse error for token &{10 18 spf.securedserverspace.com}: parse error for token &{10 18 _netblocks4.securedserverspace.com}: limit exceeded (domain: konsulko.com, ip: 79.124.30.14, mailfrom: leon.anavi@konsulko.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=anavi.org; s=default; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=mCRdNPNXe3obH+Mvlt9Xffrod5LedMdgPY2xKFkspVc=; b=fGmWZkr9cRRf0APk4EVkMyQBKP 7XVyW0NzTJPBJbZPM/Cg6stwqy6Pkpvs7YBSQX4lcihXnSlRGXVREHA5JXHIaxebveUzBtvzZCbTT Wij7ncHwfzqri00+ncmO/9UyLyZbSfYOzoaDS9LxKMRsOAsu8LdOIvKjPxHrDzBVY40A7sxsXzFic fLdbwhyDq4LsEvGQQxP+BNUzAvJ2ebdg7SCprelQAfUv2AWhdeWy32V/uO5T4wqIfirGRpGXPySz5 MdH2MB/VEMZK/9oLhsw9GunLKgMhJ2NYTbFTLPzJfuhGmIhK0md9errgMbPFZ3JixnqdyN6krf+N8 L1dT5WLg==; Received: from lan.nucleusys.com ([92.247.61.126]:41394 helo=tone.k.g) by voyager.superhosting.bg with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.95) (envelope-from ) id 1oaG6I-0000x1-9s; Mon, 19 Sep 2022 15:41:54 +0300 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 2/4] python3-astroid: Upgrade 2.12.9 -> 2.12.10 Date: Mon, 19 Sep 2022 15:41:40 +0300 Message-Id: <20220919124142.4025940-2-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220919124142.4025940-1-leon.anavi@konsulko.com> References: <20220919124142.4025940-1-leon.anavi@konsulko.com> MIME-Version: 1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - voyager.superhosting.bg X-AntiAbuse: Original Domain - lists.openembedded.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - konsulko.com X-Get-Message-Sender-Via: voyager.superhosting.bg: authenticated_id: leon@anavi.org X-Authenticated-Sender: voyager.superhosting.bg: leon@anavi.org X-Source: X-Source-Args: X-Source-Dir: List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Mon, 19 Sep 2022 12:41:58 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/98864 Upgrade to release 2.12.10: - Fixed a crash when introspecting modules compiled by `cffi` - ``decorators.cached`` now gets its cache cleared by calling ``AstroidManager.clear_cache`` Signed-off-by: Leon Anavi --- .../{python3-astroid_2.12.9.bb => python3-astroid_2.12.10.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-astroid_2.12.9.bb => python3-astroid_2.12.10.bb} (89%) diff --git a/meta-python/recipes-devtools/python/python3-astroid_2.12.9.bb b/meta-python/recipes-devtools/python/python3-astroid_2.12.10.bb similarity index 89% rename from meta-python/recipes-devtools/python/python3-astroid_2.12.9.bb rename to meta-python/recipes-devtools/python/python3-astroid_2.12.10.bb index 4fb29709a..c1d746b89 100644 --- a/meta-python/recipes-devtools/python/python3-astroid_2.12.9.bb +++ b/meta-python/recipes-devtools/python/python3-astroid_2.12.10.bb @@ -4,7 +4,7 @@ SECTION = "devel/python" LICENSE = "LGPL-2.1-only" LIC_FILES_CHKSUM = "file://LICENSE;md5=a70cf540abf41acb644ac3b621b2fad1" -SRC_URI[sha256sum] = "0dafbfcf4ebdecd3c8f6d742c9d9c88508229ca823d5c98ab872d964f3321e56" +SRC_URI[sha256sum] = "81f870105d892e73bf535da77a8261aa5bde838fa4ed12bb2f435291a098c581" inherit pypi setuptools3 From patchwork Mon Sep 19 12:41:41 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 12974 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 14269C6FA90 for ; Mon, 19 Sep 2022 12:41:58 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web12.19256.1663591316779212351 for ; Mon, 19 Sep 2022 05:41:57 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=GXZziYhE; spf=permerror, err=parse error for token &{10 18 spf.securedserverspace.com}: parse error for token &{10 18 _netblocks4.securedserverspace.com}: limit exceeded (domain: konsulko.com, ip: 79.124.30.14, mailfrom: leon.anavi@konsulko.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=anavi.org; s=default; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=vODPeHI3aKtCeCihvqg1SmT37C0FlsgqJG1db0y6NK0=; b=GXZziYhEQnK3UkK2leZ2L3C3kF EuH4iWh4Z0BTl1TMLntr9b8uJik6iGdJ5jezwhnZPkegee3M4MhTl3H8gqM2EvkugFW0/h0KV8M56 sHIIaPUiQyd8mvg84RBM8hJ0DZHQQ25kfjV+TsOZIgzLd7YqfPfT6F2KIwAkPJURnFiWOADhwY/eK Ubfo1mxpne6gAo8wGerIxdVBf9oiWa1+NYK1z57PgfF6hRLWJWbT9fyl2t6uNAjPp4TW3rzVNZkL+ AoJzBGC1aZaZef2/509XnojwRuyUx/fGxJTo2oYeLUFzwE6E5T74NdZDUos/AmPPHEp8d/qf3xqys dtvyUZMw==; Received: from lan.nucleusys.com ([92.247.61.126]:41394 helo=tone.k.g) by voyager.superhosting.bg with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.95) (envelope-from ) id 1oaG6K-0000x1-LS; Mon, 19 Sep 2022 15:41:56 +0300 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 3/4] python3-imageio: Upgrade 2.21.3 -> 2.22.0 Date: Mon, 19 Sep 2022 15:41:41 +0300 Message-Id: <20220919124142.4025940-3-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220919124142.4025940-1-leon.anavi@konsulko.com> References: <20220919124142.4025940-1-leon.anavi@konsulko.com> MIME-Version: 1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - voyager.superhosting.bg X-AntiAbuse: Original Domain - lists.openembedded.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - konsulko.com X-Get-Message-Sender-Via: voyager.superhosting.bg: authenticated_id: leon@anavi.org X-Authenticated-Sender: voyager.superhosting.bg: leon@anavi.org X-Source: X-Source-Args: X-Source-Dir: List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Mon, 19 Sep 2022 12:41:58 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/98865 Upgrade to release 2.22.0: - Pyav API for procedural video writing Signed-off-by: Leon Anavi --- .../{python3-imageio_2.21.3.bb => python3-imageio_2.22.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-imageio_2.21.3.bb => python3-imageio_2.22.0.bb} (81%) diff --git a/meta-python/recipes-devtools/python/python3-imageio_2.21.3.bb b/meta-python/recipes-devtools/python/python3-imageio_2.22.0.bb similarity index 81% rename from meta-python/recipes-devtools/python/python3-imageio_2.21.3.bb rename to meta-python/recipes-devtools/python/python3-imageio_2.22.0.bb index 74591f3c4..6bc7b60f9 100644 --- a/meta-python/recipes-devtools/python/python3-imageio_2.21.3.bb +++ b/meta-python/recipes-devtools/python/python3-imageio_2.22.0.bb @@ -5,7 +5,7 @@ SECTION = "devel/python" LICENSE = "BSD-2-Clause" LIC_FILES_CHKSUM = "file://LICENSE;md5=24cb9a367a9e641b459a01c4d15256ba" -SRC_URI[sha256sum] = "b10a583c831c932f4afbea9e8403082d2a76b1d30d7555b777ceb70441890b3c" +SRC_URI[sha256sum] = "a332d127ec387b2d3dca967fd065a90f1c1a4ba2343570b03fe2cebb6ed064ea" inherit pypi setuptools3 From patchwork Mon Sep 19 12:41:42 2022 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Leon Anavi X-Patchwork-Id: 12977 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 0199EC54EE9 for ; Mon, 19 Sep 2022 12:42:08 +0000 (UTC) Received: from voyager.superhosting.bg (voyager.superhosting.bg [79.124.30.14]) by mx.groups.io with SMTP id smtpd.web11.19276.1663591318605249040 for ; Mon, 19 Sep 2022 05:41:59 -0700 Authentication-Results: mx.groups.io; dkim=pass header.i=@anavi.org header.s=default header.b=LlSGN3Xp; spf=permerror, err=parse error for token &{10 18 spf.securedserverspace.com}: parse error for token &{10 18 _netblocks4.securedserverspace.com}: limit exceeded (domain: konsulko.com, ip: 79.124.30.14, mailfrom: leon.anavi@konsulko.com) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=anavi.org; s=default; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Id:List-Help:List-Unsubscribe:List-Subscribe: List-Post:List-Owner:List-Archive; bh=DPGHvp1gK9rp/rYt2XjuTvoeDfmFKa9saICxgo2UC9E=; b=LlSGN3XpsKckfMlxMrgWK9d94R eZ/C6X1kcR0+oQUtwINC9SuQQa/og77fXw3k2On4XJXzHRrkDXPJ8B69ZIHXumOKDwR6kFLEsHrn3 AIpvaVa0TqO1YROVng7GzkICg2N1PW5MJwmrAj5FN1bnitRlChnSJzaG/YGkRLXDvA3j8KuDiZPXq M5hmU3f7IhLcyQ5i5eoz9U7tdk7uIvlFXmkygIuiw1YJ/S1IignO8Jv8nvjCHnhu+T8kShSMV3A5O pWgAeHVILORuG9LeUcDtajrNc3jZNi+dtPo34k08yW7bmYpeQxlTRobvUINFus4jGGEFpCj6PIwCV orjbj2kw==; Received: from lan.nucleusys.com ([92.247.61.126]:41394 helo=tone.k.g) by voyager.superhosting.bg with esmtpsa (TLS1.2) tls TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256 (Exim 4.95) (envelope-from ) id 1oaG6M-0000x1-Lt; Mon, 19 Sep 2022 15:41:58 +0300 From: Leon Anavi To: openembedded-devel@lists.openembedded.org Cc: Leon Anavi Subject: [meta-python][PATCH 4/4] python3-email-validator: Upgrade 1.2.1 -> 1.3.0 Date: Mon, 19 Sep 2022 15:41:42 +0300 Message-Id: <20220919124142.4025940-4-leon.anavi@konsulko.com> X-Mailer: git-send-email 2.30.2 In-Reply-To: <20220919124142.4025940-1-leon.anavi@konsulko.com> References: <20220919124142.4025940-1-leon.anavi@konsulko.com> MIME-Version: 1.0 X-AntiAbuse: This header was added to track abuse, please include it with any abuse report X-AntiAbuse: Primary Hostname - voyager.superhosting.bg X-AntiAbuse: Original Domain - lists.openembedded.org X-AntiAbuse: Originator/Caller UID/GID - [47 12] / [47 12] X-AntiAbuse: Sender Address Domain - konsulko.com X-Get-Message-Sender-Via: voyager.superhosting.bg: authenticated_id: leon@anavi.org X-Authenticated-Sender: voyager.superhosting.bg: leon@anavi.org X-Source: X-Source-Args: X-Source-Dir: List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Mon, 19 Sep 2022 12:42:08 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/98866 Upgrade to release 1.3.0: - Deliverability checks now check for 'v=spf1 -all' SPF records as a way to reject more bad domains. - Special use domain names now raise EmailSyntaxError instead of EmailUndeliverableError since they are performed even if check_deliverability is off. - New module-level attributes are added to override the default values of the keyword arguments and the special-use domains list. - The keyword arguments of the public methods are now marked as keyword-only. - pyIsEmail's test cases are added to the tests. - Recommend that check_deliverability be set to False for validation on login pages. - Added an undocumented globally_deliverable option. Signed-off-by: Leon Anavi --- ...mail-validator_1.2.1.bb => python3-email-validator_1.3.0.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-python/recipes-devtools/python/{python3-email-validator_1.2.1.bb => python3-email-validator_1.3.0.bb} (78%) diff --git a/meta-python/recipes-devtools/python/python3-email-validator_1.2.1.bb b/meta-python/recipes-devtools/python/python3-email-validator_1.3.0.bb similarity index 78% rename from meta-python/recipes-devtools/python/python3-email-validator_1.2.1.bb rename to meta-python/recipes-devtools/python/python3-email-validator_1.3.0.bb index a5cb09fd9..76dfdd601 100644 --- a/meta-python/recipes-devtools/python/python3-email-validator_1.2.1.bb +++ b/meta-python/recipes-devtools/python/python3-email-validator_1.3.0.bb @@ -3,7 +3,7 @@ SECTION = "devel/python" LICENSE = "CC0-1.0" LIC_FILES_CHKSUM = "file://LICENSE;md5=65d3616852dbf7b1a6d4b53b00626032" -SRC_URI[sha256sum] = "6757aea012d40516357c0ac2b1a4c31219ab2f899d26831334c5d069e8b6c3d8" +SRC_URI[sha256sum] = "553a66f8be2ec2dea641ae1d3f29017ab89e9d603d4a25cdaac39eefa283d769" PYPI_PACKAGE = "email_validator"