commit: c2919fd7e2dcd23ab9942bf623968e13bbca8d6d
Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Wed Mar 19 18:11:40 2025 +0000
Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Wed Mar 19 18:11:40 2025 +0000
URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2919fd7
dev-python/psycopg: Add deselects for 32-bit architectures
Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
dev-python/psycopg/psycopg-3.2.6.ebuild | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/dev-python/psycopg/psycopg-3.2.6.ebuild
b/dev-python/psycopg/psycopg-3.2.6.ebuild
index e64110803551..81d2d087c1c9 100644
--- a/dev-python/psycopg/psycopg-3.2.6.ebuild
+++ b/dev-python/psycopg/psycopg-3.2.6.ebuild
@@ -95,6 +95,15 @@ python_test() {
tests/test_dns_srv.py::test_srv
)
+ case ${ARCH} in
+ arm|x86)
+ EPYTEST_DESELECT+=(
+ # TODO
+
tests/types/test_numpy.py::test_classes_identities
+ )
+ ;;
+ esac
+
local impls=( python )
if use native-extensions && [[ ${EPYTHON} != pypy3* ]]; then
impls+=( c )