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 C79E115817D for ; Fri, 7 Jun 2024 17:29:17 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 482A9E2A24; Fri, 7 Jun 2024 17:29:16 +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 1B941E2A24 for ; Fri, 7 Jun 2024 17:29:16 +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 0E098340C7B for ; Fri, 7 Jun 2024 17:29:15 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 67D0A1C7B for ; Fri, 7 Jun 2024 17:29:13 +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: <1717781201.4b58ee2a650714c2f11d9cad49cea0ff4a833eb8.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pandas/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pandas/pandas-2.2.2-r1.ebuild X-VCS-Directories: dev-python/pandas/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 4b58ee2a650714c2f11d9cad49cea0ff4a833eb8 X-VCS-Branch: master Date: Fri, 7 Jun 2024 17:29:13 +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: 491e318d-012d-48d0-b8f3-e2c5fbc02f94 X-Archives-Hash: 702b13e7bfc618a7a4d91c2b3f7e191d commit: 4b58ee2a650714c2f11d9cad49cea0ff4a833eb8 Author: Michał Górny gentoo org> AuthorDate: Fri Jun 7 17:25:12 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Fri Jun 7 17:26:41 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b58ee2a dev-python/pandas: Deselect more failing tests Signed-off-by: Michał Górny gentoo.org> dev-python/pandas/pandas-2.2.2-r1.ebuild | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/dev-python/pandas/pandas-2.2.2-r1.ebuild b/dev-python/pandas/pandas-2.2.2-r1.ebuild index de3fa4b71cbf..0b4c750cbd70 100644 --- a/dev-python/pandas/pandas-2.2.2-r1.ebuild +++ b/dev-python/pandas/pandas-2.2.2-r1.ebuild @@ -175,6 +175,9 @@ python_test() { # assumes that it will fail due to -mfpmath=387 on 32-bit arches, # so it XPASS-es in every other scenario tests/tools/test_to_timedelta.py::TestTimedeltas::test_to_timedelta_float + + # newer matplotlib? + tests/plotting/frame/test_frame.py::TestDataFramePlots::test_group_subplot_invalid_column_name ) if ! has_version "dev-python/scipy[${PYTHON_USEDEP}]"; then @@ -183,6 +186,17 @@ python_test() { ) fi + if has_version ">=dev-python/numexpr-2.10[${PYTHON_USEDEP}]"; then + EPYTEST_DESELECT+=( + 'tests/computation/test_eval.py::TestTypeCasting::test_binop_typecasting[numexpr-python-left_right0-float64-/]' + 'tests/computation/test_eval.py::TestTypeCasting::test_binop_typecasting[numexpr-python-left_right1-float64-/]' + 'tests/computation/test_eval.py::TestTypeCasting::test_binop_typecasting[numexpr-pandas-left_right0-float64-/]' + 'tests/computation/test_eval.py::TestTypeCasting::test_binop_typecasting[numexpr-pandas-left_right1-float64-/]' + 'tests/computation/test_eval.py::TestOperations::test_simple_arith_ops[numexpr-python]' + 'tests/computation/test_eval.py::TestOperations::test_simple_arith_ops[numexpr-pandas]' + ) + fi + local -x LC_ALL=C.UTF-8 cd "${BUILD_DIR}/install$(python_get_sitedir)" || die "${EPYTHON}" -c "import pandas; pandas.show_versions()" || die @@ -191,7 +205,7 @@ python_test() { # https://github.com/pandas-dev/pandas/issues/54907 local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 epytest pandas/tests \ - --no-strict-data-files \ + --no-strict-data-files -o xfail_strict=false \ -m "not single_cpu and not slow and not network and not db" || die "Tests failed with ${EPYTHON}" rm test-data.xml test_stata.dta || die