Update to latest version.
This commit is contained in:
parent
64f50c6b25
commit
2459e4f1fa
1
.gitignore
vendored
1
.gitignore
vendored
@ -42,3 +42,4 @@
|
||||
/dask-2021.5.0.tar.gz
|
||||
/dask-2021.6.0.tar.gz
|
||||
/dask-2021.6.1.tar.gz
|
||||
/dask-2021.6.2.tar.gz
|
||||
|
@ -1,7 +1,7 @@
|
||||
From 0d43bed7efaf54dc2c40d853ce19cf62de128370 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/3] Skip test_encoding_gh601 on big-endian machines.
|
||||
Subject: [PATCH 1/4] Skip test_encoding_gh601 on big-endian machines.
|
||||
|
||||
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||
---
|
||||
|
@ -1,7 +1,7 @@
|
||||
From ab18b267a2eeeaa60bda03cd67b21880c91d4766 Mon Sep 17 00:00:00 2001
|
||||
From: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||
Date: Sun, 13 Jun 2021 05:37:41 -0400
|
||||
Subject: [PATCH 2/3] Use packaging for version comparisons.
|
||||
Subject: [PATCH 2/4] Use packaging for version comparisons.
|
||||
|
||||
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||
---
|
||||
|
@ -1,7 +1,7 @@
|
||||
From 57cf597227fb78a42cabbeedab146260e6f485e2 Mon Sep 17 00:00:00 2001
|
||||
From: McToel <theo.doellmann@gmx.de>
|
||||
Date: Sun, 16 May 2021 11:11:06 +0200
|
||||
Subject: [PATCH 3/3] fix index_col duplication if index_col is type str
|
||||
Subject: [PATCH 3/4] fix index_col duplication if index_col is type str
|
||||
|
||||
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||
---
|
||||
|
29
0004-Fix-scipy-tests-7841.patch
Normal file
29
0004-Fix-scipy-tests-7841.patch
Normal file
@ -0,0 +1,29 @@
|
||||
From 97bf7e87437e5f8ce1c1a8b6defed81c8946add2 Mon Sep 17 00:00:00 2001
|
||||
From: Julia Signell <jsignell@gmail.com>
|
||||
Date: Tue, 29 Jun 2021 08:48:10 -0400
|
||||
Subject: [PATCH 4/4] Fix scipy tests (#7841)
|
||||
|
||||
Signed-off-by: Elliott Sales de Andrade <quantum.analyst@gmail.com>
|
||||
---
|
||||
dask/array/tests/test_stats.py | 4 +++-
|
||||
1 file changed, 3 insertions(+), 1 deletion(-)
|
||||
|
||||
diff --git a/dask/array/tests/test_stats.py b/dask/array/tests/test_stats.py
|
||||
index d9fe290d..a80b6e61 100644
|
||||
--- a/dask/array/tests/test_stats.py
|
||||
+++ b/dask/array/tests/test_stats.py
|
||||
@@ -75,8 +75,10 @@ def test_one(kind):
|
||||
],
|
||||
)
|
||||
def test_two(kind, kwargs):
|
||||
+ # The sums of observed and expected frequencies must match
|
||||
a = np.random.random(size=30)
|
||||
- b = np.random.random(size=30)
|
||||
+ b = a[::-1]
|
||||
+
|
||||
a_ = da.from_array(a, 3)
|
||||
b_ = da.from_array(b, 3)
|
||||
|
||||
--
|
||||
2.31.1
|
||||
|
@ -6,7 +6,7 @@
|
||||
%bcond_without bootstrap
|
||||
|
||||
Name: python-%{srcname}
|
||||
Version: 2021.6.1
|
||||
Version: 2021.6.2
|
||||
Release: 1%{?dist}
|
||||
Summary: Parallel PyData with Task Scheduling
|
||||
|
||||
@ -19,6 +19,8 @@ Patch0001: 0001-Skip-test_encoding_gh601-on-big-endian-machines.patch
|
||||
Patch0002: 0002-Use-packaging-for-version-comparisons.patch
|
||||
# https://github.com/dask/dask/pull/7661
|
||||
Patch0003: 0003-fix-index_col-duplication-if-index_col-is-type-str.patch
|
||||
# https://github.com/dask/dask/pull/7841
|
||||
Patch0004: 0004-Fix-scipy-tests-7841.patch
|
||||
|
||||
BuildArch: noarch
|
||||
|
||||
@ -236,6 +238,9 @@ pytest_args=(
|
||||
|
||||
|
||||
%changelog
|
||||
* Sun Jul 04 2021 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 2021.6.2-1
|
||||
- Update to latest version (#1974872)
|
||||
|
||||
* Sat Jun 19 2021 Elliott Sales de Andrade <quantum.analyst@gmail.com> - 2021.6.1-1
|
||||
- Update to latest version (#1973783)
|
||||
|
||||
|
2
sources
2
sources
@ -1 +1 @@
|
||||
SHA512 (dask-2021.6.1.tar.gz) = c3c032ae8d67994cb924e23787a571ad75ac88ee682542aa486dd76b38ba25c809593e9bb11a716589eeea437aaf8b69a4ecdf676c417fe566d92a2b1a8678b6
|
||||
SHA512 (dask-2021.6.2.tar.gz) = 2949a0a028d08794936faaeeea3b36c97ac1492288519efa0fd1e6bbb9b5b52b730657b8b342a47ca0183d98e9179836423847670fc12c14be0890daa4b773b4
|
||||
|
Loading…
Reference in New Issue
Block a user