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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 6289F158094 for ; Sun, 2 Oct 2022 16:19:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D57D0E0963; Sun, 2 Oct 2022 16:18:50 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A3550E095A for ; Sun, 2 Oct 2022 16:18:50 +0000 (UTC) From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= To: gentoo-dev@lists.gentoo.org Cc: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= Subject: [gentoo-dev] [PATCH 3/4] distutils-r1.eclass: Bump min dep versions Date: Sun, 2 Oct 2022 18:18:39 +0200 Message-Id: <20221002161840.5552-3-mgorny@gentoo.org> X-Mailer: git-send-email 2.37.3 In-Reply-To: <20221002161840.5552-1-mgorny@gentoo.org> References: <20221002161840.5552-1-mgorny@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-dev@lists.gentoo.org Reply-to: gentoo-dev@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Archives-Salt: c89613fc-ff53-494f-ba70-7f7f71f5e6d5 X-Archives-Hash: 4932387b211d2effccbc75027d0265a8 Signed-off-by: Michał Górny --- eclass/distutils-r1.eclass | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/eclass/distutils-r1.eclass b/eclass/distutils-r1.eclass index 8fd652ff1e13..d667b31191e2 100644 --- a/eclass/distutils-r1.eclass +++ b/eclass/distutils-r1.eclass @@ -202,7 +202,7 @@ _distutils_set_globals() { fi bdep=' - >=dev-python/gpep517-8[${PYTHON_USEDEP}] + >=dev-python/gpep517-9[${PYTHON_USEDEP}] ' case ${DISTUTILS_USE_PEP517} in flit) @@ -212,22 +212,22 @@ _distutils_set_globals() { ;; flit_scm) bdep+=' - dev-python/flit_scm[${PYTHON_USEDEP}] + >=dev-python/flit_scm-1.7.0[${PYTHON_USEDEP}] ' ;; hatchling) bdep+=' - >=dev-python/hatchling-1.3.1[${PYTHON_USEDEP}] + >=dev-python/hatchling-1.8.1[${PYTHON_USEDEP}] ' ;; jupyter) bdep+=' - >=dev-python/jupyter_packaging-0.12.0-r1[${PYTHON_USEDEP}] + >=dev-python/jupyter_packaging-0.12.3[${PYTHON_USEDEP}] ' ;; maturin) bdep+=' - >=dev-util/maturin-0.12.20[${PYTHON_USEDEP}] + >=dev-util/maturin-0.13.3[${PYTHON_USEDEP}] ' ;; no) @@ -236,17 +236,17 @@ _distutils_set_globals() { ;; meson-python) bdep+=' - dev-python/meson-python[${PYTHON_USEDEP}] + >=dev-python/meson-python-0.9.0[${PYTHON_USEDEP}] ' ;; pbr) bdep+=' - >=dev-python/pbr-5.9.0[${PYTHON_USEDEP}] + >=dev-python/pbr-5.10.0[${PYTHON_USEDEP}] ' ;; pdm) bdep+=' - >=dev-python/pdm-pep517-1.0.2[${PYTHON_USEDEP}] + >=dev-python/pdm-pep517-1.0.4[${PYTHON_USEDEP}] ' ;; poetry) @@ -256,7 +256,7 @@ _distutils_set_globals() { ;; setuptools) bdep+=' - >=dev-python/setuptools-62.6.0[${PYTHON_USEDEP}] + >=dev-python/setuptools-65.3.0[${PYTHON_USEDEP}] dev-python/wheel[${PYTHON_USEDEP}] ' ;; @@ -277,7 +277,7 @@ _distutils_set_globals() { eqawarn "is enabled." fi else - local setuptools_dep='>=dev-python/setuptools-42.0.2[${PYTHON_USEDEP}]' + local setuptools_dep='>=dev-python/setuptools-65.3.0[${PYTHON_USEDEP}]' case ${DISTUTILS_USE_SETUPTOOLS:-bdepend} in no|manual) -- 2.37.3