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 EFD4A15806E for ; Tue, 23 May 2023 10:08:56 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E70A2E094F; Tue, 23 May 2023 10:08:55 +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 CBD3DE094F for ; Tue, 23 May 2023 10:08:55 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B3D52340BEA for ; Tue, 23 May 2023 10:08:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4FB58A71 for ; Tue, 23 May 2023 10:08:53 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1684836530.9817637785ecfa6bf73c2f9f35c877d7fbdf15d0.sam@gentoo> Subject: [gentoo-commits] proj/portage:master commit in: .github/workflows/ X-VCS-Repository: proj/portage X-VCS-Files: .github/workflows/ci.yml X-VCS-Directories: .github/workflows/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 9817637785ecfa6bf73c2f9f35c877d7fbdf15d0 X-VCS-Branch: master Date: Tue, 23 May 2023 10:08:53 +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: cb9ca804-7294-4e43-b253-44dc6c3ddace X-Archives-Hash: 4032d4954122208fb0b1cba069c21483 commit: 9817637785ecfa6bf73c2f9f35c877d7fbdf15d0 Author: Sam James gentoo org> AuthorDate: Tue May 23 08:58:18 2023 +0000 Commit: Sam James gentoo org> CommitDate: Tue May 23 10:08:50 2023 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=98176377 CI: add setuptools Needed for >= Python 3.12 which drops distutils. This is the codepath we're using in Gentoo anyway. Signed-off-by: Sam James gentoo.org> .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 29a5a60c1..c17e74e91 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -36,7 +36,7 @@ jobs: python -VV python -m site python -m pip install --upgrade pip - python -m pip install tox tox-gh-actions + python -m pip install tox tox-gh-actions setuptools - name: Test ./setup.py install --root=/tmp/install-root run: | printf "[build_ext]\nportage_ext_modules=true" >> setup.cfg