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 16CDB15802E for ; Fri, 28 Jun 2024 19:20:20 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 55E652BC013; Fri, 28 Jun 2024 19:20:19 +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 28C452BC013 for ; Fri, 28 Jun 2024 19:20:19 +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 CD1FB33BEE8 for ; Fri, 28 Jun 2024 19:20:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 071591BC0 for ; Fri, 28 Jun 2024 19:20:16 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1719602412.7ce402d788c379cc2110c6841902840b6686573b.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/vcrpy/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/vcrpy/vcrpy-6.0.1.ebuild X-VCS-Directories: dev-python/vcrpy/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 7ce402d788c379cc2110c6841902840b6686573b X-VCS-Branch: master Date: Fri, 28 Jun 2024 19:20:16 +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: a86b18ce-2c6a-49b4-82fd-499569774e80 X-Archives-Hash: ae117f417e6a64d8e4cfd55b9dffe766 commit: 7ce402d788c379cc2110c6841902840b6686573b Author: Michał Górny gentoo org> AuthorDate: Fri Jun 28 19:16:42 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jun 28 19:20:12 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ce402d7 dev-python/vcrpy: Enable py3.13 Signed-off-by: Michał Górny gentoo.org> dev-python/vcrpy/vcrpy-6.0.1.ebuild | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/dev-python/vcrpy/vcrpy-6.0.1.ebuild b/dev-python/vcrpy/vcrpy-6.0.1.ebuild index 257bac69d0b4..f65324722b8e 100644 --- a/dev-python/vcrpy/vcrpy-6.0.1.ebuild +++ b/dev-python/vcrpy/vcrpy-6.0.1.ebuild @@ -4,7 +4,7 @@ EAPI=8 DISTUTILS_USE_PEP517=setuptools -PYTHON_COMPAT=( python3_{10..12} ) +PYTHON_COMPAT=( python3_{10..13} ) inherit distutils-r1 @@ -62,6 +62,23 @@ python_test() { tests/integration/test_aiohttp.py ) + case ${EPYTHON} in + python3.13) + EPYTEST_DESELECT+=( + # SSL problems, might be weak bundle in pytest-httpbin + # https://github.com/kevin1024/vcrpy/issues/848 + "tests/integration/test_urllib2.py::test_cross_scheme" + "tests/integration/test_urllib2.py::test_decorator[https]" + "tests/integration/test_urllib2.py::test_get_data[https]" + "tests/integration/test_urllib2.py::test_post_data[https]" + "tests/integration/test_urllib2.py::test_post_decorator[https]" + "tests/integration/test_urllib2.py::test_post_unicode_data[https]" + "tests/integration/test_urllib2.py::test_response_code[https]" + "tests/integration/test_urllib2.py::test_response_headers[https]" + ) + ;; + esac + local -x REQUESTS_CA_BUNDLE=$("${EPYTHON}" -m pytest_httpbin.certs) epytest -m 'not online' }