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/xarray/
Date: Sat, 29 Jan 2022 07:23:07
Message-Id: 1643440977.bdc5e91d569055fc713c23150601ce52fb1544d4.mgorny@gentoo
1 commit: bdc5e91d569055fc713c23150601ce52fb1544d4
2 Author: Michał Górny <mgorny <AT> gentoo <DOT> org>
3 AuthorDate: Sat Jan 29 06:32:15 2022 +0000
4 Commit: Michał Górny <mgorny <AT> gentoo <DOT> org>
5 CommitDate: Sat Jan 29 07:22:57 2022 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdc5e91d
7
8 dev-python/xarray: Bump to 0.21.0
9
10 Signed-off-by: Michał Górny <mgorny <AT> gentoo.org>
11
12 dev-python/xarray/Manifest | 1 +
13 dev-python/xarray/xarray-0.21.0.ebuild | 43 ++++++++++++++++++++++++++++++++++
14 2 files changed, 44 insertions(+)
15
16 diff --git a/dev-python/xarray/Manifest b/dev-python/xarray/Manifest
17 index 01978936404f..f8fac2cbd735 100644
18 --- a/dev-python/xarray/Manifest
19 +++ b/dev-python/xarray/Manifest
20 @@ -1 +1,2 @@
21 DIST xarray-0.20.2.tar.gz 2906021 BLAKE2B 08ed46a27ce66ec1677e63000d74ecc4a01defa81b8ae1ec24595ff330713bf3e5585adce541e5e6769a74d64a4f5eb9d9aad27450e8088973681d0d60d00f83 SHA512 cd292af68ffd8016e01021e30a2ea83dd36e2f79bd9c3d8e7d83adc5a98a95615091d0102a19a0e3337ae334a701f575a142f476d1465804c8d5fe259ca35f1a
22 +DIST xarray-0.21.0.tar.gz 2937088 BLAKE2B b40d57cbb018e563b92afef1e5208bb597bf8ae892b154f49e90079977c05ab955ba07f136fcf3f456efa8deb70ffd2590dd2d2429b6114a418882b8d96b535f SHA512 85461b86ced78ad5cfd1ace122f1ab89f779a8c0c7e8d0f06233b4654c5f6bcb081eeddc91e5df1c8c40c344d2477f2f18799858e23294c0929e8e59445508b0
23
24 diff --git a/dev-python/xarray/xarray-0.21.0.ebuild b/dev-python/xarray/xarray-0.21.0.ebuild
25 new file mode 100644
26 index 000000000000..0042c68ffc28
27 --- /dev/null
28 +++ b/dev-python/xarray/xarray-0.21.0.ebuild
29 @@ -0,0 +1,43 @@
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="N-D labeled arrays and datasets in Python"
41 +HOMEPAGE="https://xarray.pydata.org/"
42 +SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
43 +
44 +LICENSE="Apache-2.0"
45 +SLOT="0"
46 +KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~x86 ~amd64-linux ~x86-linux"
47 +
48 +RDEPEND="
49 + >=dev-python/numpy-1.18[${PYTHON_USEDEP}]
50 + >=dev-python/pandas-1.1[${PYTHON_USEDEP}]"
51 +# note: most of test dependencies are optional
52 +BDEPEND="
53 + test? (
54 + dev-python/bottleneck[${PYTHON_USEDEP}]
55 + dev-python/hypothesis[${PYTHON_USEDEP}]
56 + dev-python/matplotlib[${PYTHON_USEDEP}]
57 + dev-python/toolz[${PYTHON_USEDEP}]
58 + !hppa? ( >=dev-python/scipy-1.4[${PYTHON_USEDEP}] )
59 + )"
60 +
61 +PATCHES=(
62 + "${FILESDIR}"/${PN}-0.19.0-riscv_tests_datetime.patch
63 +)
64 +
65 +distutils_enable_tests pytest
66 +
67 +EPYTEST_DESELECT=(
68 + # warning-targeted tests are fragile and not important to end users
69 + xarray/tests/test_backends.py::test_no_warning_from_dask_effective_get
70 + # TODO
71 + xarray/tests/test_variable.py::TestVariableWithDask::test_multiindex
72 +)