From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: 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)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8156515807A for ; Mon, 09 Jun 2025 06:12:59 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (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) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id 4A1D734313D for ; Mon, 09 Jun 2025 06:12:59 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 39FE41103C1; Mon, 09 Jun 2025 06:12:56 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 323B01103C1 for ; Mon, 09 Jun 2025 06:12:56 +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 D260734306B for ; Mon, 09 Jun 2025 06:12:55 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4B4D02942 for ; Mon, 09 Jun 2025 06:12:54 +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: <1749449530.34f2b13460afee5fdc0fac77e8ba14a7d3a4e416.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/jsonpickle/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/jsonpickle/jsonpickle-4.1.1.ebuild X-VCS-Directories: dev-python/jsonpickle/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 34f2b13460afee5fdc0fac77e8ba14a7d3a4e416 X-VCS-Branch: master Date: Mon, 09 Jun 2025 06:12:54 +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: 3f2790f2-af6b-4234-9ec4-e9b5b032195a X-Archives-Hash: c68da1422c5faa3ed8f92fb250830a32 commit: 34f2b13460afee5fdc0fac77e8ba14a7d3a4e416 Author: Sam James gentoo org> AuthorDate: Mon Jun 9 06:12:10 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon Jun 9 06:12:10 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34f2b134 dev-python/jsonpickle: enable py3.14 with PYTHON_FULLY_TESTED Allow skipping pandas and gmpy2 when porting to new impls. Signed-off-by: Sam James gentoo.org> dev-python/jsonpickle/jsonpickle-4.1.1.ebuild | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/dev-python/jsonpickle/jsonpickle-4.1.1.ebuild b/dev-python/jsonpickle/jsonpickle-4.1.1.ebuild index b75a7b2f9a9f..94814605f90c 100644 --- a/dev-python/jsonpickle/jsonpickle-4.1.1.ebuild +++ b/dev-python/jsonpickle/jsonpickle-4.1.1.ebuild @@ -4,8 +4,8 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{11..13} ) - +PYTHON_FULLY_TESTED=( python3_{11..13} ) +PYTHON_COMPAT=( "${PYTHON_FULLY_TESTED[@]}" python3_14 ) inherit distutils-r1 optfeature DESCRIPTION="Python library for serializing any arbitrary object graph into JSON" @@ -32,8 +32,10 @@ BDEPEND=" dev-python/sqlalchemy[${PYTHON_USEDEP}] dev-python/ujson[${PYTHON_USEDEP}] test-full? ( - dev-python/gmpy2[${PYTHON_USEDEP}] - dev-python/pandas[${PYTHON_USEDEP}] + $(python_gen_cond_dep ' + dev-python/gmpy2[${PYTHON_USEDEP}] + dev-python/pandas[${PYTHON_USEDEP}] + ' "${PYTHON_FULLY_TESTED[@]}") ) ) "