Update to latest version (#1993560)
This commit is contained in:
parent
6b66f0933f
commit
bcf75f45f5
1
.gitignore
vendored
1
.gitignore
vendored
@ -46,3 +46,4 @@
|
||||
/dask-2021.7.0.tar.gz
|
||||
/dask-2021.7.1.tar.gz
|
||||
/dask-2021.7.2.tar.gz
|
||||
/dask-2021.8.0.tar.gz
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 00617f134bb4cfeeddea495ffe51c3f06a0faefc Mon Sep 17 00:00:00 2001
|
||||
From 5d9cdaa75e0547d8d5edf8c995f29279688f7e11 Mon Sep 17 00:00:00 2001
|
||||
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||
Date: Sun, 7 Mar 2021 04:07:32 -0500
|
||||
Subject: [PATCH 1/2] Skip test_encoding_gh601 on big-endian machines.
|
||||
@ -9,7 +9,7 @@ Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||
1 file changed, 2 insertions(+)
|
||||
|
||||
diff --git a/dask/dataframe/io/tests/test_csv.py b/dask/dataframe/io/tests/test_csv.py
|
||||
index 67ce22c8..247112bc 100644
|
||||
index 48780ef8..f63d0e80 100644
|
||||
--- a/dask/dataframe/io/tests/test_csv.py
|
||||
+++ b/dask/dataframe/io/tests/test_csv.py
|
||||
@@ -1,6 +1,7 @@
|
||||
@ -20,8 +20,8 @@ index 67ce22c8..247112bc 100644
|
||||
from unittest import mock
|
||||
|
||||
import pytest
|
||||
@@ -1081,6 +1082,7 @@ xfail_pandas_100 = pytest.mark.xfail(
|
||||
)
|
||||
@@ -1099,6 +1100,7 @@ def test_read_csv_with_datetime_index_partitions_n():
|
||||
xfail_pandas_100 = pytest.mark.xfail(reason="https://github.com/dask/dask/issues/5787")
|
||||
|
||||
|
||||
+@pytest.mark.skipif(sys.byteorder == 'big', reason='Broken on big-endian machines')
|
||||
|
@ -1,4 +1,4 @@
|
||||
From 207ee623f994745947dadee026901afbe5fce9d0 Mon Sep 17 00:00:00 2001
|
||||
From 41306c1829a22f0e8654f8d75dc23ce766c26ea8 Mon Sep 17 00:00:00 2001
|
||||
From: McToel <theo.doellmann@gmx.de>
|
||||
Date: Sun, 16 May 2021 11:11:06 +0200
|
||||
Subject: [PATCH 2/2] fix index_col duplication if index_col is type str
|
||||
|
@ -6,7 +6,7 @@
|
||||
%bcond_without bootstrap
|
||||
|
||||
Name: python-%{srcname}
|
||||
Version: 2021.7.2
|
||||
Version: 2021.8.0
|
||||
Release: %autorelease
|
||||
Summary: Parallel PyData with Task Scheduling
|
||||
|
||||
@ -35,10 +35,10 @@ BuildRequires: python3dist(cloudpickle) >= %{cloudpickle_version}
|
||||
BuildRequires: python3dist(fsspec) >= %{fsspec_version}
|
||||
BuildRequires: python3dist(graphviz)
|
||||
BuildRequires: python3dist(ipython)
|
||||
%global numpy_version 1.15.1
|
||||
%global numpy_version 1.18
|
||||
BuildRequires: python3dist(numpy) >= %{numpy_version}
|
||||
BuildRequires: python3dist(packaging) >= 20
|
||||
%global pandas_version 0.25
|
||||
%global pandas_version 1
|
||||
BuildRequires: python3dist(pandas) >= %{pandas_version}
|
||||
%global partd_version 0.3.10
|
||||
BuildRequires: python3dist(partd) >= %{partd_version}
|
||||
@ -50,7 +50,7 @@ BuildRequires: python3dist(setuptools)
|
||||
%global toolz_version 0.8.2
|
||||
BuildRequires: python3dist(toolz) >= %{toolz_version}
|
||||
%if %{without bootstrap}
|
||||
%global distributed_version 2021.7.1
|
||||
%global distributed_version 2021.8
|
||||
BuildRequires: python3dist(distributed) >= %{distributed_version}
|
||||
BuildRequires: python3dist(scikit-image)
|
||||
BuildRequires: python3dist(xarray)
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (dask-2021.7.2.tar.gz) = 029832ea2db342cc63dcfc4e5a563e6e92f5d26298ca19d7815548acceb8098e94b53acb5df1a6923172e7014b6235ddb34921f2855701921556db83a9411afa
|
||||
SHA512 (dask-2021.8.0.tar.gz) = b205c05965aec419650b9125193d96383ad9ffa96e8aef92ac15da339e0ba9d1c40ba6bc176e56aca0ef6f84d7a523d7157aba90e146317aef58fe34dc07e2bc
|
||||
|
Loading…
Reference in New Issue
Block a user