Tests disabled in d/rules
Author: Rebecca N. Palmer <rebecca_palmer@zoho.com>
Forwarded: not-needed
Gbp-Pq: Name mips_warning.patch
__docformat__ = "restructuredtext"
+import platform
+import warnings
+if 'mips' in platform.uname()[4]:
+ warnings.warn("This appears to be a mips system, on which pandas is buggy (may give wrong answers or crash)")
+del platform, warnings
+
# Let users know if they're missing any of our hard dependencies
_hard_dependencies = ("numpy", "pytz", "dateutil")
_missing_dependencies = []