From 1c315860da58bf479b018481804fee8ad634193f Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Nov 22 2019 09:14:42 +0000 Subject: Remove old patch. --- diff --git a/0001-XFail-partitioning-test-on-some-arches.patch b/0001-XFail-partitioning-test-on-some-arches.patch deleted file mode 100644 index a0ca655..0000000 --- a/0001-XFail-partitioning-test-on-some-arches.patch +++ /dev/null @@ -1,33 +0,0 @@ -From 6996dbcd6305e8108686cc460690113e041bcd89 Mon Sep 17 00:00:00 2001 -From: Elliott Sales de Andrade -Date: Sun, 3 Mar 2019 05:24:13 -0500 -Subject: [PATCH] XFail partitioning test on some arches. - -Signed-off-by: Elliott Sales de Andrade ---- - dask/dataframe/tests/test_dataframe.py | 5 +++++ - 1 file changed, 5 insertions(+) - -diff --git a/dask/dataframe/tests/test_dataframe.py b/dask/dataframe/tests/test_dataframe.py -index 8a73df55..85cd6f2c 100644 ---- a/dask/dataframe/tests/test_dataframe.py -+++ b/dask/dataframe/tests/test_dataframe.py -@@ -1,3 +1,4 @@ -+import platform - import warnings - from itertools import product - from operator import add -@@ -1733,6 +1734,10 @@ def test_repartition_on_pandas_dataframe(): - @pytest.mark.parametrize("dtype", [float, "M8[ns]"]) - @pytest.mark.parametrize("transform", [lambda df: df, lambda df: df.x]) - def test_repartition_npartitions(use_index, n, k, dtype, transform): -+ if (platform.machine() in ('ppc64le', 'aarch64', 's390x') and -+ (dtype, k, n, use_index) == (float, 5, 1, True)): -+ pytest.xfail(reason='Unsupported architecture') -+ - df = pd.DataFrame( - {"x": [1, 2, 3, 4, 5, 6] * 10, "y": list("abdabd") * 10}, - index=pd.Series([10, 20, 30, 40, 50, 60] * 10, dtype=dtype), --- -2.21.0 -