diff --git a/0003-XFail-partitioning-test-on-some-arches.patch b/0003-XFail-partitioning-test-on-some-arches.patch index 91f05a9..92f8d16 100644 --- a/0003-XFail-partitioning-test-on-some-arches.patch +++ b/0003-XFail-partitioning-test-on-some-arches.patch @@ -1,15 +1,15 @@ -From cea02b7cd2f9e61ed9f0b5f391438e31f567efe5 Mon Sep 17 00:00:00 2001 +From a37ed9e54bd28bc84127c78ee5026f7611fd132c Mon Sep 17 00:00:00 2001 From: Elliott Sales de Andrade Date: Sun, 3 Mar 2019 05:24:13 -0500 Subject: [PATCH 3/3] XFail partitioning test on some arches. Signed-off-by: Elliott Sales de Andrade --- - dask/dataframe/tests/test_dataframe.py | 3 +++ - 1 file changed, 3 insertions(+) + dask/dataframe/tests/test_dataframe.py | 4 ++++ + 1 file changed, 4 insertions(+) diff --git a/dask/dataframe/tests/test_dataframe.py b/dask/dataframe/tests/test_dataframe.py -index 0b4c7e76..6718f05c 100644 +index 0b4c7e76..5205a292 100644 --- a/dask/dataframe/tests/test_dataframe.py +++ b/dask/dataframe/tests/test_dataframe.py @@ -1,3 +1,4 @@ @@ -17,11 +17,12 @@ index 0b4c7e76..6718f05c 100644 import sys import textwrap from distutils.version import LooseVersion -@@ -1340,6 +1341,8 @@ def test_repartition_on_pandas_dataframe(): +@@ -1340,6 +1341,9 @@ def test_repartition_on_pandas_dataframe(): assert_eq(ddf, df.y) -+@pytest.mark.xfail(platform.machine() in ('ppc64le', 'aarch64', 's390x'), ++@pytest.mark.xfail(platform.machine() in ('ppc64le', 'aarch64', 's390x', ++ 'i686', 'i586', 'i386'), + reason='Unsupported architecture') @pytest.mark.parametrize('use_index', [True, False]) @pytest.mark.parametrize('n', [1, 2, 4, 5]) diff --git a/python-dask.spec b/python-dask.spec index 5859f5c..da990e8 100644 --- a/python-dask.spec +++ b/python-dask.spec @@ -7,7 +7,7 @@ Name: python-%{srcname} Version: 1.1.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: Parallel PyData with Task Scheduling License: BSD @@ -189,6 +189,9 @@ PYTHONDONTWRITEBYTECODE=1 \ %changelog +* Wed Mar 06 2019 Elliott Sales de Andrade - 1.1.3-3 +- Mark partitioning test as expected failure on 32-bit systems as well + * Wed Mar 06 2019 Elliott Sales de Andrade - 1.1.3-2 - Add meta-subpackages for individual features