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 A8C4C158451 for ; Sat, 13 Jan 2024 19:35:37 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 15437E2A5A; Sat, 13 Jan 2024 19:35:36 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EE1C2E2A5A for ; Sat, 13 Jan 2024 19:35:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 0024F34317F for ; Sat, 13 Jan 2024 19:35:35 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2A1C995D for ; Sat, 13 Jan 2024 19:35:33 +0000 (UTC) From: "Arthur Zamarin" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Arthur Zamarin" Message-ID: <1705172808.4cfca87ae213c48231cc626fd8c4cb7ec905aedd.arthurzam@gentoo> Subject: [gentoo-commits] proj/pkgcore/pkgcheck:master commit in: / X-VCS-Repository: proj/pkgcore/pkgcheck X-VCS-Files: pyproject.toml X-VCS-Directories: / X-VCS-Committer: arthurzam X-VCS-Committer-Name: Arthur Zamarin X-VCS-Revision: 4cfca87ae213c48231cc626fd8c4cb7ec905aedd X-VCS-Branch: master Date: Sat, 13 Jan 2024 19:35:33 +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: 7c8ac67c-db39-476b-b680-b0c74e9b5b29 X-Archives-Hash: e4d6ccc528b55aab3241e2e4dbe0d7c2 commit: 4cfca87ae213c48231cc626fd8c4cb7ec905aedd Author: Arthur Zamarin gentoo org> AuthorDate: Sat Jan 13 19:06:48 2024 +0000 Commit: Arthur Zamarin gentoo org> CommitDate: Sat Jan 13 19:06:48 2024 +0000 URL: https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=4cfca87a pyproject.toml: add runtime dependency on setuptools (py>=3.12) Used in bash/__init__.py when distutils is not available (python3.12) and only if the tree-sitter parser is not available. Signed-off-by: Arthur Zamarin gentoo.org> pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 1299f3ff..71bfe200 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -42,6 +42,7 @@ dependencies = [ "tree-sitter>=0.19.0", "snakeoil~=0.10.4", "pkgcore~=0.12.21", + "setuptools; python_version >= '3.12'", ] [project.optional-dependencies]