commit:     205ae5a3bdb824c3cb0ced7ea2fec7e8c25bfa0f
Author:     Michał Górny <mgorny <AT> gentoo <DOT> org>
AuthorDate: Sat Sep  2 13:43:10 2023 +0000
Commit:     Michał Górny <mgorny <AT> gentoo <DOT> org>
CommitDate: Sat Sep  2 14:10:47 2023 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=205ae5a3

dev-python/dask: Bump to 2023.9.0

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

 dev-python/dask/Manifest             |  1 +
 dev-python/dask/dask-2023.9.0.ebuild | 84 ++++++++++++++++++++++++++++++++++++
 2 files changed, 85 insertions(+)

diff --git a/dev-python/dask/Manifest b/dev-python/dask/Manifest
index 8d5c1a0bffa7..fd94332b8eb4 100644
--- a/dev-python/dask/Manifest
+++ b/dev-python/dask/Manifest
@@ -1,2 +1,3 @@
 DIST dask-2023.8.0.gh.tar.gz 8539262 BLAKE2B 
3ce61191bca458e32ac88904460f8ee843f34ddc9be88d0de7f56a90897dd599d70012f92b5063b5df996bc61c85c16b2d6b745e1a334847d8b66f66721bc422
 SHA512 
9afee3571e58b0f923347e2ec06c80ab5e4f35abb23e0635777170def0561cf1df6c940844cad1efe112059909020cf6435147b9003c4a449eba98d38d9eefab
 DIST dask-2023.8.1.gh.tar.gz 8541743 BLAKE2B 
485a88354d3aa54ff1f6afb1bd4a8b3317a6a48b519bef4dadf1bcbb240f21e54eb165f2c076ea8aa9b5753fd8714af26453858d7fe154bb015489f89b8114be
 SHA512 
4ca231236e5d868f8fbb69b38721e495a44fbc982a53ea087ef68085c4df2cc99526b5a66b7fee93a3b63a6cd621f8448b877b98370b3dfe1a32e386dd91e73e
+DIST dask-2023.9.0.gh.tar.gz 8541973 BLAKE2B 
06e04377f8f7d0e6a6487c1c2aa52e61a8ab73a04455e9a6d7da238bd747d7ac6cf1526f645f0c874f2588f28708139f8fb1fa0271e6166442be6a15ce68b9f1
 SHA512 
eadc3a9cd5d8d960d8006db2641e5513a093b4818c1cd4de058d70f088ef1cfd74413abcf0bbba757d9188de4b3c103a3fdfe4ce76f14554b589540011c53835

diff --git a/dev-python/dask/dask-2023.9.0.ebuild 
b/dev-python/dask/dask-2023.9.0.ebuild
new file mode 100644
index 000000000000..1f6ccd0af63e
--- /dev/null
+++ b/dev-python/dask/dask-2023.9.0.ebuild
@@ -0,0 +1,84 @@
+# 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 ~riscv ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+       >=dev-python/click-8.0[${PYTHON_USEDEP}]
+       >=dev-python/cloudpickle-1.5.0[${PYTHON_USEDEP}]
+       >=dev-python/fsspec-2021.9.0[${PYTHON_USEDEP}]
+       >=dev-python/importlib-metadata-4.13.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.10.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+       dev-python/toolz[${PYTHON_USEDEP}]
+       >=dev-python/versioneer-0.28[${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
+
+src_prepare() {
+       # fails with sqlalchemy-2.0, even though we don't use it x_x
+       sed -i -e '/RemovedIn20Warning/d' pyproject.toml || die
+       sed -i -e 's:--cov-config=pyproject.toml::' pyproject.toml || die
+       distutils-r1_src_prepare
+}
+
+python_test() {
+       local 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]"
+               dask/array/tests/test_image.py::test_preprocess
+               dask/tests/test_system.py::test_cpu_count_cgroups_v2
+               # require sqlalchemy<2.0
+               dask/dataframe/io/tests/test_sql.py
+       )
+
+       if ! has_version -b "dev-python/pyarrow[parquet,${PYTHON_USEDEP}]"; then
+               EPYTEST_DESELECT+=(
+                       # fails if pyarrow is installed without USE=parquet
+                       # (optional dep, skipped if it's not installed at all)
+                       
dask/dataframe/io/tests/test_parquet.py::test_pyarrow_filter_divisions
+               )
+       fi
+
+       epytest -p no:flaky -m "not network"
+}

Reply via email to