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 B971B1382C5 for ; Mon, 25 May 2020 20:16:14 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E7AB5E0819; Mon, 25 May 2020 20:16:13 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (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 C70F5E080E for ; Mon, 25 May 2020 20:16:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 65CD434ED1D for ; Mon, 25 May 2020 20:16:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E5E6D242 for ; Mon, 25 May 2020 20:16:09 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1590436362.8a6d7077fecc7f0bf74e06b70d6a71442bb1b13b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/urllib3/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/urllib3/urllib3-1.25.9.ebuild X-VCS-Directories: dev-python/urllib3/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 8a6d7077fecc7f0bf74e06b70d6a71442bb1b13b X-VCS-Branch: master Date: Mon, 25 May 2020 20:16:09 +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: e973bcb8-ba28-439d-9851-c1fd99f0b125 X-Archives-Hash: d16ff0d49f9933a9813dbfe3eb343d55 commit: 8a6d7077fecc7f0bf74e06b70d6a71442bb1b13b Author: Michał Górny gentoo org> AuthorDate: Mon May 25 19:52:42 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Mon May 25 19:52:42 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a6d7077 dev-python/urllib3: Port to py39 Signed-off-by: Michał Górny gentoo.org> dev-python/urllib3/urllib3-1.25.9.ebuild | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/dev-python/urllib3/urllib3-1.25.9.ebuild b/dev-python/urllib3/urllib3-1.25.9.ebuild index 9b3269254dc..3b908729ee8 100644 --- a/dev-python/urllib3/urllib3-1.25.9.ebuild +++ b/dev-python/urllib3/urllib3-1.25.9.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python2_7 python3_{6,7,8} pypy3 ) +PYTHON_COMPAT=( python2_7 python3_{6,7,8,9} pypy3 ) PYTHON_REQ_USE="ssl(+)" inherit distutils-r1 @@ -31,7 +31,6 @@ RDEPEND=" brotli? ( dev-python/brotlipy[${PYTHON_USEDEP}] ) " BDEPEND=" - dev-python/setuptools[${PYTHON_USEDEP}] test? ( $(python_gen_cond_dep " ${RDEPEND} @@ -40,7 +39,7 @@ BDEPEND=" dev-python/pytest[\${PYTHON_USEDEP}] >=dev-python/trustme-0.5.3[\${PYTHON_USEDEP}] >=www-servers/tornado-4.2.1[\${PYTHON_USEDEP}] - " 'python3*') + " python3_{6,7,8}) ) " @@ -70,6 +69,9 @@ python_test() { ewarn "of circular dependencies for Python 2 removal. Please test" ewarn "manually in a virtualenv." ;; + python3.9) + einfo "Tests not yet ported to py3.9" + ;; python3*) pytest -vv || die "Tests fail with ${EPYTHON}" ;;