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 (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 86EF3158042 for ; Mon, 4 Nov 2024 03:11:34 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C879FE07F1; Mon, 4 Nov 2024 03:11:33 +0000 (UTC) Received: from smtp.gentoo.org (mail.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id B2F63E07F1 for ; Mon, 4 Nov 2024 03:11:33 +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 BF2E7342FE2 for ; Mon, 4 Nov 2024 03:11:32 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1D98A17E0 for ; Mon, 4 Nov 2024 03:11:31 +0000 (UTC) From: "Zac Medico" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Zac Medico" Message-ID: <1730689659.c7d5d4ee3059f69f5efb91ee1d3786cb5fdd9ff5.zmedico@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: zmedico X-VCS-Committer-Name: Zac Medico X-VCS-Revision: c7d5d4ee3059f69f5efb91ee1d3786cb5fdd9ff5 X-VCS-Branch: master Date: Mon, 4 Nov 2024 03:11:31 +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: 6c5a4e4a-5c92-405b-a178-f99c3637720f X-Archives-Hash: afa61e621c3396e768c4ecf009b00ebd commit: c7d5d4ee3059f69f5efb91ee1d3786cb5fdd9ff5 Author: Zac Medico gentoo org> AuthorDate: Mon Nov 4 03:07:39 2024 +0000 Commit: Zac Medico gentoo org> CommitDate: Mon Nov 4 03:07:39 2024 +0000 URL: https://gitweb.gentoo.org/proj/portage.git/commit/?id=c7d5d4ee github: test python3.14 + spawn Signed-off-by: Zac Medico gentoo.org> .github/workflows/ci.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 1ec1e8381a..d6ada8a3d7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,6 +20,7 @@ jobs: - '3.11' - '3.12' - '3.13-dev' + - '3.14-dev' - 'pypy-3.10' exclude: - python-version: '3.9' @@ -30,6 +31,10 @@ jobs: start-method: 'spawn' - python-version: '3.12' start-method: 'spawn' + - python-version: '3.13-dev' + start-method: 'spawn' + - python-version: '3.14-dev' + start-method: 'fork' - python-version: 'pypy-3.10' start-method: 'spawn' fail-fast: false