summaryrefslogtreecommitdiff
path: root/dev-python/numpy
diff options
context:
space:
mode:
authorMichał Górny <mgorny@gentoo.org>2024-11-01 11:20:13 +0100
committerMichał Górny <mgorny@gentoo.org>2024-11-01 12:00:16 +0100
commit6e2a87f8eb86b4e3d9a47f04f343084cdc94b292 (patch)
treefa9a7cefc6644e49861bbe8278706510d62c81b2 /dev-python/numpy
parent2bb6ceb40fbdc26c219f17051768006936832e26 (diff)
downloadgentoo-6e2a87f8eb86b4e3d9a47f04f343084cdc94b292.tar.gz
gentoo-6e2a87f8eb86b4e3d9a47f04f343084cdc94b292.tar.bz2
gentoo-6e2a87f8eb86b4e3d9a47f04f343084cdc94b292.zip
dev-python/numpy: Update deselects for x86
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/numpy')
-rw-r--r--dev-python/numpy/numpy-2.0.2-r1.ebuild11
-rw-r--r--dev-python/numpy/numpy-2.1.2.ebuild11
2 files changed, 20 insertions, 2 deletions
diff --git a/dev-python/numpy/numpy-2.0.2-r1.ebuild b/dev-python/numpy/numpy-2.0.2-r1.ebuild
index b2f86a093db9..b6e7c23a9a8e 100644
--- a/dev-python/numpy/numpy-2.0.2-r1.ebuild
+++ b/dev-python/numpy/numpy-2.0.2-r1.ebuild
@@ -95,7 +95,6 @@ python_test() {
typing/tests/test_typing.py
# Uses huge amount of memory
core/tests/test_mem_overlap.py
- 'core/tests/test_multiarray.py::TestDot::test_huge_vectordot[complex128]'
)
if [[ $(uname -m) == armv8l ]]; then
@@ -105,6 +104,16 @@ python_test() {
)
fi
+ case ${ARCH} in
+ x86)
+ EPYTEST_DESELECT+=(
+ # require too much memory
+ '_core/tests/test_multiarray.py::TestDot::test_huge_vectordot[complex128]'
+ '_core/tests/test_multiarray.py::TestDot::test_huge_vectordot[float64]'
+ )
+ ;;
+ esac
+
case ${EPYTHON} in
python3.13)
EPYTEST_DESELECT+=(
diff --git a/dev-python/numpy/numpy-2.1.2.ebuild b/dev-python/numpy/numpy-2.1.2.ebuild
index b2c954fbd4cb..342f99c15dfc 100644
--- a/dev-python/numpy/numpy-2.1.2.ebuild
+++ b/dev-python/numpy/numpy-2.1.2.ebuild
@@ -90,7 +90,6 @@ python_test() {
numpy/typing/tests/test_typing.py
# Uses huge amount of memory
numpy/core/tests/test_mem_overlap.py
- 'numpy/core/tests/test_multiarray.py::TestDot::test_huge_vectordot[complex128]'
)
if [[ $(uname -m) == armv8l ]]; then
@@ -100,6 +99,16 @@ python_test() {
)
fi
+ case ${ARCH} in
+ x86)
+ EPYTEST_DESELECT+=(
+ # require too much memory
+ 'numpy/_core/tests/test_multiarray.py::TestDot::test_huge_vectordot[complex128]'
+ 'numpy/_core/tests/test_multiarray.py::TestDot::test_huge_vectordot[float64]'
+ )
+ ;;
+ esac
+
case ${EPYTHON} in
python3.13)
EPYTEST_DESELECT+=(