From mboxrd@z Thu Jan 1 00:00:00 1970 Delivery-date: Tue, 28 Mar 2023 14:33:04 +0200 Received: from metis.ext.pengutronix.de ([2001:67c:670:201:290:27ff:fe1d:cc33]) by lore.white.stw.pengutronix.de with esmtps (TLS1.3) tls TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384 (Exim 4.94.2) (envelope-from ) id 1ph8Vb-0001pQ-Ku for lore@lore.pengutronix.de; Tue, 28 Mar 2023 14:33:04 +0200 Received: from localhost ([127.0.0.1] helo=metis.ext.pengutronix.de) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1ph8Vb-0002eQ-P4; Tue, 28 Mar 2023 14:33:03 +0200 Received: from smtp28.bhosted.nl ([2a02:9e0:8000::40]) by metis.ext.pengutronix.de with esmtps (TLS1.3:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.92) (envelope-from ) id 1ph8VO-0002S7-Ih for ptxdist@pengutronix.de; Tue, 28 Mar 2023 14:32:51 +0200 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=protonic.nl; s=202111; h=content-transfer-encoding:mime-version:references:in-reply-to:message-id:date: subject:cc:to:from:from; bh=hY28z+g/SffTTliU1kxccOi0ZrUcMOOe8tCoaO5uTLc=; b=DwWGKJzCCFKq8hak5HpSVYhkwPV2agGpvWxMkfL+gpjiVuZd1aNAwE4CenVr5gsdsDSfT211qsaL2 Co4bJ9Z9Os7UvLoddREjDkUJk+RzsUBbEUXtRuyhjhvnrI8FtfaNqmbY7Mp3osByiFWxfihCbyhgii ub1/+Ka4+O92Yqq3BXZC1NgH6HxfwvFMPSdFk/wZrGwiqc+Sk2l3rq1c4OXoBgmy2NLt4sTvMuJQSh n4mX7tlx2Ygum3Zhwa8yFP1PrQImownXQQ+LCmb8jiP21E3F0bEOX9/w4dYnfOOSNMiUEXGvG8eDFE atjfpE+2DmuNOOnGFab5MfECjshc5zA== X-MSG-ID: a69f1ee9-cd64-11ed-a150-0050569d11ae From: Robin van der Gracht To: ptxdist@pengutronix.de Date: Tue, 28 Mar 2023 14:32:23 +0200 Message-Id: <20230328123226.668075-3-robin@protonic.nl> X-Mailer: git-send-email 2.37.2 In-Reply-To: <20230328123226.668075-1-robin@protonic.nl> References: <20230328123226.668075-1-robin@protonic.nl> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on metis.ext.pengutronix.de X-Spam-Level: X-Spam-Status: No, score=-2.6 required=4.0 tests=AWL,BAYES_00,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,SPF_HELO_PASS,SPF_PASS autolearn=ham autolearn_force=no version=3.4.2 Subject: [ptxdist] [PATCH v2 2/5] python3-aiofiles: Version bumb to 0.8.0 X-BeenThere: ptxdist@pengutronix.de X-Mailman-Version: 2.1.29 Precedence: list List-Id: PTXdist Development Mailing List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Reply-To: ptxdist@pengutronix.de Cc: robin@protonic.nl Sender: "ptxdist" X-SA-Exim-Connect-IP: 127.0.0.1 X-SA-Exim-Mail-From: ptxdist-bounces@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false Current version has no Python3.11 support. import aiofiles File "/usr/lib/python3.11/site-packages/aiofiles/__init__.py", line 2, in File "/usr/lib/python3.11/site-packages/aiofiles/threadpool/__init__.py", line 8, in File "/usr/lib/python3.11/site-packages/aiofiles/threadpool/binary.py", line 1, in File "/usr/lib/python3.11/site-packages/aiofiles/base.py", line 7, in File "/usr/lib/python3.11/site-packages/aiofiles/base.py", line 14, in AsyncBase AttributeError: module 'asyncio' has no attribute 'coroutine'. Did you mean: 'coroutines'? Signed-off-by: Robin van der Gracht --- rules/python3-aiofiles.make | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rules/python3-aiofiles.make b/rules/python3-aiofiles.make index edb5d23e1..7fe76c4de 100644 --- a/rules/python3-aiofiles.make +++ b/rules/python3-aiofiles.make @@ -14,8 +14,8 @@ PACKAGES-$(PTXCONF_PYTHON3_AIOFILES) += python3-aiofiles # # Paths and names # -PYTHON3_AIOFILES_VERSION := 0.3.2 -PYTHON3_AIOFILES_MD5 := 726de778d9e4b1c6d5e4d04994a03505 +PYTHON3_AIOFILES_VERSION := 0.8.0 +PYTHON3_AIOFILES_MD5 := 697deeb4fdcb620c45f114f173ed7c0d PYTHON3_AIOFILES := aiofiles-$(PYTHON3_AIOFILES_VERSION) PYTHON3_AIOFILES_SUFFIX := tar.gz PYTHON3_AIOFILES_URL := $(call ptx/mirror-pypi, aiofiles, $(PYTHON3_AIOFILES).$(PYTHON3_AIOFILES_SUFFIX)) -- 2.37.2