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, 06 Nov 2021 10:59:11
Message-Id: 1636196334.1f934f5444b61d642a10f1910602fda48c38b231.mgorny@gentoo
1 commit: 1f934f5444b61d642a10f1910602fda48c38b231
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Nov 6 08:18:09 2021 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Nov 6 10:58:54 2021 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f934f54
7
8 dev-python/dask: Bump to 2021.11.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-2021.11.0.ebuild | 50 +++++++++++++++++++++++++++++++++++
14 2 files changed, 51 insertions(+)
15
16 diff --git a/dev-python/dask/Manifest b/dev-python/dask/Manifest
17 index 29009d8b616..f492b416ba5 100644
18 --- a/dev-python/dask/Manifest
19 +++ b/dev-python/dask/Manifest
20 @@ -1,2 +1,3 @@
21 DIST dask-2021.10.0.tar.gz 3963245 BLAKE2B cfccf683a6fc3b55f2be3e62b04e733586401ab642ed2ed0a6cc6956e4179d5692fb1aa94757fceacf1b40efd7ea46b6d5f7bb5df407d0f51d2f711c1672307e SHA512 801378c1e09eeb6825603d4de8efe711c04c1d83dbd37d44a66695c1629d74e6914670015fb231b270fa61a668120358aa5cd32d4ee99096616624e8fe0905fa
22 +DIST dask-2021.11.0.tar.gz 3971871 BLAKE2B be2c28782e3e870b62e70041bd7572783ff9eef61c27d2fa092f00b74ae23877163e3c00f59f67c5c39b6fefd723cb2c25cdc58b5f5c76c08ef1d686f256cb25 SHA512 cebdef68b2c40348c84627505f4e1f17f998aed603d590be5acc7b78233362330352be395396be00f72215b738e9393ef08eeae8ed0fb933466c1c2d6158e5ea
23 DIST dask-2021.9.1.tar.gz 3794819 BLAKE2B c3ed5050581f41c4ea82ad9d1d233205f105434e5e6dcc654ba2e999b8cf105033d58ecf045d2063dabcb701cb2af6f092ecfd8435d24e5949ed2d39b54ae19e SHA512 20beca3f68c2e21d54c941049a1f352e19fcce7b5f7ecf84abf60cfb9979551a3e83938ca5439b662d35c0b64b26d726f6fea85641e737d0060c56a2e879755e
24
25 diff --git a/dev-python/dask/dask-2021.11.0.ebuild b/dev-python/dask/dask-2021.11.0.ebuild
26 new file mode 100644
27 index 00000000000..6bbfa1efc7e
28 --- /dev/null
29 +++ b/dev-python/dask/dask-2021.11.0.ebuild
30 @@ -0,0 +1,50 @@
31 +# Copyright 1999-2021 Gentoo Authors
32 +# Distributed under the terms of the GNU General Public License v2
33 +
34 +EAPI=8
35 +
36 +PYTHON_COMPAT=( python3_{8..9} )
37 +inherit distutils-r1
38 +
39 +DESCRIPTION="Task scheduling and blocked algorithms for parallel processing"
40 +HOMEPAGE="https://dask.org/"
41 +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
42 +
43 +LICENSE="BSD"
44 +SLOT="0"
45 +KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
46 +
47 +RDEPEND="
48 + >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
49 + >=dev-python/fsspec-0.6.0[${PYTHON_USEDEP}]
50 + >=dev-python/numpy-1.15.1[${PYTHON_USEDEP}]
51 + >=dev-python/pandas-0.25.0[${PYTHON_USEDEP}]
52 + >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
53 + >=dev-python/partd-0.3.10[${PYTHON_USEDEP}]
54 + dev-python/psutil[${PYTHON_USEDEP}]
55 + dev-python/pyyaml[${PYTHON_USEDEP}]
56 + >=dev-python/toolz-0.8.2[${PYTHON_USEDEP}]
57 +"
58 +BDEPEND="
59 + dev-python/toolz[${PYTHON_USEDEP}]
60 + test? (
61 + dev-python/moto[${PYTHON_USEDEP}]
62 + dev-python/numexpr[${PYTHON_USEDEP}]
63 + dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
64 + dev-python/scipy[${PYTHON_USEDEP}]
65 + )
66 +"
67 +
68 +distutils_enable_tests pytest
69 +
70 +PATCHES=(
71 + "${FILESDIR}"/dask-2021.10.0-warning.patch
72 +)
73 +
74 +python_test() {
75 + local EPYTEST_DESELECT=(
76 + # files missing from pypi tarball
77 + dask/tests/test_docs.py::test_development_guidelines_matches_ci
78 + )
79 + epytest -p no:flaky -m "not network"
80 +}