From 4cbcc855382a06088e2f016f62cafdbcb7e40665 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 20 Mar 2022 00:40:44 +0000 Subject: gentoo resync : 20.03.2022 --- .../pandas/files/pandas-1.3.4-arm-tests.patch | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 dev-python/pandas/files/pandas-1.3.4-arm-tests.patch (limited to 'dev-python/pandas/files') diff --git a/dev-python/pandas/files/pandas-1.3.4-arm-tests.patch b/dev-python/pandas/files/pandas-1.3.4-arm-tests.patch deleted file mode 100644 index c30d10460b63..000000000000 --- a/dev-python/pandas/files/pandas-1.3.4-arm-tests.patch +++ /dev/null @@ -1,21 +0,0 @@ -https://bugs.gentoo.org/818964 -https://github.com/pandas-dev/pandas/commit/b0992ee2f4653c7d70ddbad6f2d172a4ef0bda32 - -From: Sam James -Date: Fri, 29 Oct 2021 17:24:01 +0100 -Subject: [PATCH] Update is_platform_arm() to detect 32-bit arm and other - variants (#44225) - ---- a/pandas/compat/__init__.py -+++ b/pandas/compat/__init__.py -@@ -99,7 +99,9 @@ def is_platform_arm() -> bool: - bool - True if the running platform uses ARM architecture. - """ -- return platform.machine() in ("arm64", "aarch64") -+ return platform.machine() in ("arm64", "aarch64") or platform.machine().startswith( -+ "armv" -+ ) - - - def import_lzma(): -- cgit v1.2.3