summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-05-10 14:01:54 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-05-10 16:10:23 +0200
commit5ac896040260eb9b03fdc10512f2e22dee798630 (patch)
treebe9eb576c0b17012ac2d4a9995f76307ebe7304d /dev-python/pandas/files
parentdev-python/matplotlib: Drop old (diff)
downloadgentoo-5ac896040260eb9b03fdc10512f2e22dee798630.tar.gz
gentoo-5ac896040260eb9b03fdc10512f2e22dee798630.tar.bz2
gentoo-5ac896040260eb9b03fdc10512f2e22dee798630.zip
dev-python/pandas: Drop old
Bug: https://bugs.gentoo.org/649104 Package-Manager: Portage-2.3.36, Repoman-2.3.9
Diffstat (limited to 'dev-python/pandas/files')
-rw-r--r--dev-python/pandas/files/pandas-0.17.0-testfix-backport.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/dev-python/pandas/files/pandas-0.17.0-testfix-backport.patch b/dev-python/pandas/files/pandas-0.17.0-testfix-backport.patch
deleted file mode 100644
index c83319256f22..000000000000
--- a/dev-python/pandas/files/pandas-0.17.0-testfix-backport.patch
+++ /dev/null
@@ -1,28 +0,0 @@
- pandas/tests/test_categorical.py | 10 ++++++----
- 1 file changed, 6 insertions(+), 4 deletions(-)
-
-diff --git a/pandas/tests/test_categorical.py b/pandas/tests/test_categorical.py
-old mode 100755
-new mode 100644
-index e97010e..1d14323
---- a/pandas/tests/test_categorical.py
-+++ b/pandas/tests/test_categorical.py
-@@ -86,12 +86,14 @@ class TestCategorical(tm.TestCase):
- factor = Categorical.from_array(arr, ordered=False)
- self.assertFalse(factor.ordered)
-
-- # this however will raise as cannot be sorted
-- # but fixed in newer versions of numpy
-- if LooseVersion(np.__version__) < "1.10":
-+ if compat.PY3:
- self.assertRaises(TypeError, lambda : Categorical.from_array(arr, ordered=True))
- else:
-- Categorical.from_array(arr, ordered=True)
-+ # this however will raise as cannot be sorted (on PY3 or older numpies)
-+ if LooseVersion(np.__version__) < "1.10":
-+ self.assertRaises(TypeError, lambda : Categorical.from_array(arr, ordered=True))
-+ else:
-+ Categorical.from_array(arr, ordered=True)
-
- def test_is_equal_dtype(self):
-