summaryrefslogtreecommitdiff
path: root/dev-python/pandas/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@koprulu.sector>2022-03-20 00:40:44 +0000
committerV3n3RiX <venerix@koprulu.sector>2022-03-20 00:40:44 +0000
commit4cbcc855382a06088e2f016f62cafdbcb7e40665 (patch)
tree356496503d52354aa6d9f2d36126302fed5f3a73 /dev-python/pandas/files
parentfcc5224904648a8e6eb528d7603154160a20022f (diff)
gentoo resync : 20.03.2022
Diffstat (limited to 'dev-python/pandas/files')
-rw-r--r--dev-python/pandas/files/pandas-1.3.4-arm-tests.patch21
1 files changed, 0 insertions, 21 deletions
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 <sam@cmpct.info>
-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():