Skip to content

Commit 5c3812b

Browse files
Debian Science Teamrebecca-palmer
Debian Science Team
authored andcommitted
Warn that pandas is possibly broken on mips(64)(el)
Tests disabled in d/rules Author: Rebecca N. Palmer <[email protected]> Forwarded: not-needed Gbp-Pq: Name mips_warning.patch
1 parent c83bfab commit 5c3812b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

pandas/__init__.py

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
__docformat__ = "restructuredtext"
44

5+
import platform
6+
import warnings
7+
if 'mips' in platform.uname()[4]:
8+
warnings.warn("This appears to be a mips system, on which pandas is buggy (may give wrong answers or crash)")
9+
del platform, warnings
10+
511
# Let users know if they're missing any of our hard dependencies
612
hard_dependencies = ("numpy", "pytz", "dateutil")
713
missing_dependencies = []

0 commit comments

Comments
 (0)