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 7555C138359 for ; Sun, 13 Sep 2020 19:22:21 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A8CAAE0869; Sun, 13 Sep 2020 19:22:20 +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 8FEC2E0869 for ; Sun, 13 Sep 2020 19:22:20 +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 77BFD340AED for ; Sun, 13 Sep 2020 19:22:18 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1F635342 for ; Sun, 13 Sep 2020 19:22:17 +0000 (UTC) From: "Louis Sautier" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Louis Sautier" Message-ID: <1600024887.c9fcebb00c2a27f09855bdc8f332a6bccc9f552a.sbraz@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-dotenv/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-dotenv/python-dotenv-0.14.0.ebuild X-VCS-Directories: dev-python/python-dotenv/ X-VCS-Committer: sbraz X-VCS-Committer-Name: Louis Sautier X-VCS-Revision: c9fcebb00c2a27f09855bdc8f332a6bccc9f552a X-VCS-Branch: master Date: Sun, 13 Sep 2020 19:22:17 +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: 040f4a33-d72f-4492-9e73-6be154e728e9 X-Archives-Hash: 03f8b88ce21d68b54f7768e90e377f21 commit: c9fcebb00c2a27f09855bdc8f332a6bccc9f552a Author: Louis Sautier gentoo org> AuthorDate: Sun Sep 13 19:00:46 2020 +0000 Commit: Louis Sautier gentoo org> CommitDate: Sun Sep 13 19:21:27 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9fcebb0 dev-python/python-dotenv: add Python 3.9 support, fix deps and tests Tests run fine, however they require IPython. Package-Manager: Portage-3.0.6, Repoman-3.0.1 Signed-off-by: Louis Sautier gentoo.org> dev-python/python-dotenv/python-dotenv-0.14.0.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/dev-python/python-dotenv/python-dotenv-0.14.0.ebuild b/dev-python/python-dotenv/python-dotenv-0.14.0.ebuild index 6bb296513f8..f73be046446 100644 --- a/dev-python/python-dotenv/python-dotenv-0.14.0.ebuild +++ b/dev-python/python-dotenv/python-dotenv-0.14.0.ebuild @@ -3,7 +3,7 @@ EAPI=7 -PYTHON_COMPAT=( python3_{6,7,8} ) +PYTHON_COMPAT=( python3_{6,7,8,9} ) DISTUTILS_USE_SETUPTOOLS=rdepend inherit distutils-r1 @@ -19,12 +19,11 @@ IUSE="test" DEPEND="test? ( >=dev-python/click-5[${PYTHON_USEDEP}] + dev-python/ipython[${PYTHON_USEDEP}] dev-python/mock[${PYTHON_USEDEP}] >=dev-python/sh-1.09[${PYTHON_USEDEP}] )" -RESTRICT="test" # help fixing tests welcome, please get in touch - DOCS=( CHANGELOG.md README.md ) distutils_enable_tests pytest