Gentoo Archives: gentoo-commits

From: "Michał Górny" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/dask/
Date: Sat, 02 Apr 2022 09:47:04
Message-Id: 1648892813.460b771684f7e9e052e0d62d7cd71f672aa0d251.mgorny@gentoo
1 commit: 460b771684f7e9e052e0d62d7cd71f672aa0d251
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Apr 2 08:55:23 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Apr 2 09:46:53 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=460b7716
7
8 dev-python/dask: Bump to 2022.04.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/dask/Manifest | 1 +
13 dev-python/dask/dask-2022.04.0.ebuild | 54 +++++++++++++++++++++++++++++++++++
14 2 files changed, 55 insertions(+)
15
16 diff --git a/dev-python/dask/Manifest b/dev-python/dask/Manifest
17 index 110dbee8926d..b84215db35c4 100644
18 --- a/dev-python/dask/Manifest
19 +++ b/dev-python/dask/Manifest
20 @@ -1 +1,2 @@
21 DIST dask-2022.03.0.gh.tar.gz 8192610 BLAKE2B 1099dac34487dc51b9010746920e64e4e7e4a07bb1f3b82ebe069afdd2f64feccc7c97291a1a4d1fc089cbc6f0b6f40a81fedc96be11f85920558ad305b63641 SHA512 e32b82d76d6b3d1494c32bcec171e3fc09e38b6cc94729b3f82bf0618445e58e4bd5361efb359e5894af2703bdb4f3f100916d4d7fc905faecc9a5262559754a
22 +DIST dask-2022.04.0.gh.tar.gz 8649475 BLAKE2B 92602e239be8c281ca450eb3fb1dbafea2f5caba12f83cd6d05670431b945dba861d92481f5ec1ec0834ccf35af6658d482b26d25cf16c8b784364adbe7e9ccf SHA512 2abc10a1140ad81a5f6bdc7ff697b899a5410da6dff976c98fb30d32fff625078ebf5ed23b2317c94d293973040b05bf650c02aef2b8c18230bf2841e54c71fa
23
24 diff --git a/dev-python/dask/dask-2022.04.0.ebuild b/dev-python/dask/dask-2022.04.0.ebuild
25 new file mode 100644
26 index 000000000000..d78a53023b58
27 --- /dev/null
28 +++ b/dev-python/dask/dask-2022.04.0.ebuild
29 @@ -0,0 +1,54 @@
30 +# Copyright 1999-2022 Gentoo Authors
31 +# Distributed under the terms of the GNU General Public License v2
32 +
33 +EAPI=8
34 +
35 +DISTUTILS_USE_PEP517=setuptools
36 +PYTHON_COMPAT=( python3_{8..10} )
37 +
38 +inherit distutils-r1
39 +
40 +DESCRIPTION="Task scheduling and blocked algorithms for parallel processing"
41 +HOMEPAGE="https://dask.org/"
42 +SRC_URI="
43 + https://github.com/dask/dask/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
44 +"
45 +
46 +LICENSE="BSD"
47 +SLOT="0"
48 +KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
49 +
50 +RDEPEND="
51 + >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
52 + >=dev-python/fsspec-0.6.0[${PYTHON_USEDEP}]
53 + >=dev-python/numpy-1.15.1[${PYTHON_USEDEP}]
54 + >=dev-python/pandas-0.25.0[${PYTHON_USEDEP}]
55 + >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
56 + >=dev-python/partd-0.3.10[${PYTHON_USEDEP}]
57 + dev-python/psutil[${PYTHON_USEDEP}]
58 + >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
59 + >=dev-python/toolz-0.8.2[${PYTHON_USEDEP}]
60 +"
61 +BDEPEND="
62 + dev-python/toolz[${PYTHON_USEDEP}]
63 + test? (
64 + dev-python/moto[${PYTHON_USEDEP}]
65 + dev-python/numexpr[${PYTHON_USEDEP}]
66 + dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
67 + dev-python/scipy[${PYTHON_USEDEP}]
68 + )
69 +"
70 +
71 +distutils_enable_tests pytest
72 +
73 +EPYTEST_DESELECT=(
74 + # another test relying on -Werror
75 + "dask/array/tests/test_overlap.py::test_map_overlap_no_depth[None]"
76 + # TODO
77 + dask/array/tests/test_reductions.py::test_mean_func_does_not_warn
78 + dask/tests/test_config.py::test__get_paths
79 +)
80 +
81 +python_test() {
82 + epytest -p no:flaky -m "not network"
83 +}