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 ABF3F158041 for ; Tue, 20 Feb 2024 09:43:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CCF2BE2ADC; Tue, 20 Feb 2024 09:43:04 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id AF353E2ADC for ; Tue, 20 Feb 2024 09:43:04 +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 BC430343194 for ; Tue, 20 Feb 2024 09:43:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 05851118C for ; Tue, 20 Feb 2024 09:43:02 +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: <1708421983.9a10562e6cd2b4e6dce8c640f5c8b050967d83ab.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.0-r1.ebuild dev-python/pandas/pandas-2.2.0.ebuild X-VCS-Directories: dev-python/pandas/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 9a10562e6cd2b4e6dce8c640f5c8b050967d83ab X-VCS-Branch: master Date: Tue, 20 Feb 2024 09:43:02 +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: f1673b9e-2a76-4591-afa6-28964756dbb5 X-Archives-Hash: 61feb54a6d703f6d6cd84c2e3629f570 commit: 9a10562e6cd2b4e6dce8c640f5c8b050967d83ab Author: Michał Górny gentoo org> AuthorDate: Tue Feb 20 09:39:43 2024 +0000 Commit: Michał Górny gentoo org> CommitDate: Tue Feb 20 09:39:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a10562e dev-python/pandas: Deselect tests for x86 Signed-off-by: Michał Górny gentoo.org> dev-python/pandas/pandas-2.2.0-r1.ebuild | 10 ++++++++++ dev-python/pandas/pandas-2.2.0.ebuild | 10 ++++++++++ 2 files changed, 20 insertions(+) diff --git a/dev-python/pandas/pandas-2.2.0-r1.ebuild b/dev-python/pandas/pandas-2.2.0-r1.ebuild index aeac22a497e1..87fff0e12933 100644 --- a/dev-python/pandas/pandas-2.2.0-r1.ebuild +++ b/dev-python/pandas/pandas-2.2.0-r1.ebuild @@ -173,8 +173,18 @@ python_test() { # requires -Werror tests/tslibs/test_to_offset.py::test_to_offset_lowercase_frequency_deprecated tests/tslibs/test_to_offset.py::test_to_offset_uppercase_frequency_deprecated + + # 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 ) + if ! has_version "dev-python/scipy[${PYTHON_USEDEP}]"; then + EPYTEST_DESELECT+=( + tests/plotting/test_misc.py::test_savefig + ) + fi + local -x LC_ALL=C.UTF-8 cd "${BUILD_DIR}/install$(python_get_sitedir)" || die "${EPYTHON}" -c "import pandas; pandas.show_versions()" || die diff --git a/dev-python/pandas/pandas-2.2.0.ebuild b/dev-python/pandas/pandas-2.2.0.ebuild index cd8aaac786dc..1eaad53918a9 100644 --- a/dev-python/pandas/pandas-2.2.0.ebuild +++ b/dev-python/pandas/pandas-2.2.0.ebuild @@ -176,8 +176,18 @@ python_test() { # requires pyarrow (which is really broken) tests/io/formats/style/test_bar.py::test_style_bar_with_pyarrow_NA_values tests/series/test_api.py::TestSeriesMisc::test_inspect_getmembers + + # 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 ) + if ! has_version "dev-python/scipy[${PYTHON_USEDEP}]"; then + EPYTEST_DESELECT+=( + tests/plotting/test_misc.py::test_savefig + ) + fi + local -x LC_ALL=C.UTF-8 cd "${BUILD_DIR}/install$(python_get_sitedir)" || die "${EPYTHON}" -c "import pandas; pandas.show_versions()" || die