From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id EFE3F13835A for ; Sun, 2 Aug 2020 21:08:33 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 0B97EE09D9; Sun, 2 Aug 2020 21:08:33 +0000 (UTC) Received: from smtp.gentoo.org (dev.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E5076E09D8 for ; Sun, 2 Aug 2020 21:08:32 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 124A934F330 for ; Sun, 2 Aug 2020 21:08:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 86FA52FE for ; Sun, 2 Aug 2020 21:08:30 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1596402498.22e503b220d0cf212a342698cdc7ab9e9cd7c441.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/aiocontextvars/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild X-VCS-Directories: dev-python/aiocontextvars/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: 22e503b220d0cf212a342698cdc7ab9e9cd7c441 X-VCS-Branch: master Date: Sun, 2 Aug 2020 21:08:30 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: d32510aa-219c-4894-981b-25041c477f18 X-Archives-Hash: 651668c400a529f61107e6d6ae18f383 commit: 22e503b220d0cf212a342698cdc7ab9e9cd7c441 Author: Georgy Yakovlev gentoo org> AuthorDate: Sun Aug 2 21:05:39 2020 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sun Aug 2 21:08:18 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22e503b2 dev-python/aiocontextvars: remove py3.7+ support Bug: https://bugs.gentoo.org/735130 Package-Manager: Portage-3.0.1, Repoman-2.3.23 Signed-off-by: Georgy Yakovlev gentoo.org> dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild b/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild index fa25b811305..05e3c3c4dca 100644 --- a/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild +++ b/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild @@ -3,7 +3,8 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6..9} ) +# this is a backport, do not add extra impls +PYTHON_COMPAT=( python3_6 ) inherit distutils-r1 DESCRIPTION="Asyncio support for PEP-567 contextvars backport"