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 46EEA1382C5 for ; Wed, 3 Jun 2020 17:28:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 75FE0E0814; Wed, 3 Jun 2020 17:28:02 +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 58360E0814 for ; Wed, 3 Jun 2020 17:28:02 +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 5637634EF4F for ; Wed, 3 Jun 2020 17:28:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 46917242 for ; Wed, 3 Jun 2020 17:27:59 +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: <1591205275.82a093dc4e0dee40e404c7b88ca44f3e2ddc6919.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jedi/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jedi/jedi-0.17.0.ebuild X-VCS-Directories: dev-python/jedi/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 82a093dc4e0dee40e404c7b88ca44f3e2ddc6919 X-VCS-Branch: master Date: Wed, 3 Jun 2020 17:27:59 +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: d8d04a79-8e8d-4f5f-bd2e-979ed3b1414e X-Archives-Hash: 8a4c36cd43ae5df393214c43d0338e1a commit: 82a093dc4e0dee40e404c7b88ca44f3e2ddc6919 Author: Michał Górny gentoo org> AuthorDate: Wed Jun 3 17:02:14 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jun 3 17:27:55 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82a093dc dev-python/jedi: Port to py39 Signed-off-by: Michał Górny gentoo.org> dev-python/jedi/jedi-0.17.0.ebuild | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/dev-python/jedi/jedi-0.17.0.ebuild b/dev-python/jedi/jedi-0.17.0.ebuild index f8b98b2a657..e8e830ee68e 100644 --- a/dev-python/jedi/jedi-0.17.0.ebuild +++ b/dev-python/jedi/jedi-0.17.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6..9} ) inherit distutils-r1 @@ -55,9 +55,12 @@ python_prepare_all() { sed -e '/with sqlite3\.connect/,+2d' \ -i test/completion/stdlib.py || die - # really silly assumptions, not fit for py3.8 - sed -e '/len(difference)/s:20:22:' \ + # really silly assumptions, not fit for py3.8/3.9 + sed -e '/len(difference)/s:20:27:' \ -i test/test_utils.py || die + # py3.9 + sed -e 's:test_infer_on_generator:_&:' \ + -i test/test_api/test_api.py || die # tests relying on pristine virtualenv # this relies on test* not matching anything else