commit:     17d61a0c79fd82d1f841fdc2beefdbb05f094576
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Mar 11 05:58:01 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Mar 11 06:55:48 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17d61a0c

dev-python/dask: Bump to 2023.3.1

Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>

 dev-python/dask/Manifest             |  1 +
 dev-python/dask/dask-2023.3.1.ebuild | 70 ++++++++++++++++++++++++++++++++++++
 2 files changed, 71 insertions(+)

diff --git a/dev-python/dask/Manifest b/dev-python/dask/Manifest
index f74ceea2e85e..fbb62a339ed7 100644
--- a/dev-python/dask/Manifest
+++ b/dev-python/dask/Manifest
@@ -1,2 +1,3 @@
 DIST dask-2023.2.1.gh.tar.gz 8514054 BLAKE2B 
6f94172cf9f921675fc53cf59e9cbbe211f576374190eecf8e17ad9943bbd1ba15fb002e7cf81f0043b4f2450a0cde7bdb6feb42a08160d0fbaee24d4a2f483a
 SHA512 
1af031fd2992377297daff42c4f706e4e5573cce86a9158ea1fa4f09cf0c8a51ff5fb33d7bc551c16eb0a8e5052e76b32a143b2793027becb4e2367572c46219
 DIST dask-2023.3.0.gh.tar.gz 8514069 BLAKE2B 
427b975010e08d23bb55606da726c64a08bf17144d50f0b4641469f30620359052434a9108510c08a7d646fd567cbeafb99afe9162a0becc3417fceecf4604d3
 SHA512 
1834c98edb1fd92fd022d472ec9d05497e7845d712d0e2faae27b6a408faff3678908d3109db5ae50642348a4fa6832af995f2fb67782c7a71933126699577da
+DIST dask-2023.3.1.gh.tar.gz 8520302 BLAKE2B 
5b70e355ca02163d42615d504207e8186b2b5887d2c57c517876ffbc8a1bd4a3c56ea755d79696d952f802043134c4be4b0a69ff2eb4ea6da8faa80096bebdca
 SHA512 
e4b8306a900453b27bc19055b5a5bfd0d0ed2dc143be854d8f056ede8b1e4bdc5e91a54c674201b1b1f27cbc0c9ba908e5a82a12f52d337c3cb23cbc2e6ef199

diff --git a/dev-python/dask/dask-2023.3.1.ebuild 
b/dev-python/dask/dask-2023.3.1.ebuild
new file mode 100644
index 000000000000..718d091d9013
--- /dev/null
+++ b/dev-python/dask/dask-2023.3.1.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Task scheduling and blocked algorithms for parallel processing"
+HOMEPAGE="
+       https://www.dask.org/
+       https://github.com/dask/dask/
+       https://pypi.org/project/dask/
+"
+SRC_URI="
+       https://github.com/dask/dask/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+       >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
+       >=dev-python/fsspec-0.6.0[${PYTHON_USEDEP}]
+       >=dev-python/numpy-1.21[${PYTHON_USEDEP}]
+       >=dev-python/pandas-1.3[${PYTHON_USEDEP}]
+       >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
+       >=dev-python/partd-1.2.0[${PYTHON_USEDEP}]
+       dev-python/psutil[${PYTHON_USEDEP}]
+       >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
+       >=dev-python/toolz-0.8.2[${PYTHON_USEDEP}]
+"
+BDEPEND="
+       dev-python/toolz[${PYTHON_USEDEP}]
+       test? (
+               dev-python/moto[${PYTHON_USEDEP}]
+               dev-python/numexpr[${PYTHON_USEDEP}]
+               dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
+               dev-python/scipy[${PYTHON_USEDEP}]
+       )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+       # more tests relying on -Werror
+       "dask/array/tests/test_overlap.py::test_map_overlap_no_depth[None]"
+       dask/array/tests/test_random.py::test_RandomState_only_funcs
+       # TODO
+       dask/array/tests/test_reductions.py::test_mean_func_does_not_warn
+       dask/tests/test_config.py::test__get_paths
+       dask/array/tests/test_linalg.py::test_solve_assume_a
+       
"dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[<lambda>0-float-5-1-True]"
+       
"dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[<lambda>1-float-5-1-True]"
+       # require sqlalchemy<2.0
+       dask/dataframe/io/tests/test_sql.py
+)
+
+src_prepare() {
+       # fails with sqlalchemy-2.0, even though we don't use it x_x
+       sed -i -e '/RemovedIn20Warning/d' setup.cfg || die
+       distutils-r1_src_prepare
+}
+
+python_test() {
+       epytest -p no:flaky -m "not network"
+}

Reply via email to