blob: 8de6a2b905d8b89d938a06f09b8754a360d7f9e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
|
# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYTHON_COMPAT=( pypy3 python3_{10..13} )
inherit distutils-r1
DESCRIPTION="Kernels used by spyder on its ipython console"
HOMEPAGE="
https://github.com/spyder-ide/spyder-kernels/
https://pypi.org/project/spyder-kernels/
"
SRC_URI="https://github.com/spyder-ide/${PN}/archive/refs/tags/v${PV}.tar.gz -> ${P}.gh.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
RDEPEND="
dev-python/cloudpickle[${PYTHON_USEDEP}]
<dev-python/ipykernel-7[${PYTHON_USEDEP}]
>=dev-python/ipykernel-6.29.3[${PYTHON_USEDEP}]
<dev-python/ipython-9[${PYTHON_USEDEP}]
>dev-python/ipython-8.13.0[${PYTHON_USEDEP}]
<dev-python/jupyter-client-9[${PYTHON_USEDEP}]
>=dev-python/jupyter-client-7.4.9[${PYTHON_USEDEP}]
dev-python/matplotlib-inline[${PYTHON_USEDEP}]
>=dev-python/pyxdg-0.26[${PYTHON_USEDEP}]
>=dev-python/pyzmq-24.0.0[${PYTHON_USEDEP}]
>=dev-python/wurlitzer-1.0.3[${PYTHON_USEDEP}]
"
BDEPEND="
test? (
dev-python/cython[${PYTHON_USEDEP}]
dev-python/django[${PYTHON_USEDEP}]
dev-python/flaky[${PYTHON_USEDEP}]
dev-python/matplotlib[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/scipy[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
$(python_gen_cond_dep '
dev-python/h5py[${PYTHON_USEDEP}]
dev-python/pandas[${PYTHON_USEDEP}]
dev-python/xarray[${PYTHON_USEDEP}]
' 'python*')
)
"
distutils_enable_tests pytest
python_test() {
local EPYTEST_DESELECT=(
# we no longer package distributed, and also removed dependency on dask
spyder_kernels/console/tests/test_console_kernel.py::test_dask_multiprocessing
# RuntimeError: There is no current event loop in thread 'MainThread'.
# https://bugs.gentoo.org/834893
spyder_kernels/console/tests/test_console_kernel.py::test_cwd_in_sys_path
spyder_kernels/console/tests/test_console_kernel.py::test_multiprocessing
spyder_kernels/console/tests/test_console_kernel.py::test_multiprocessing_2
spyder_kernels/console/tests/test_console_kernel.py::test_runfile
spyder_kernels/console/tests/test_console_kernel.py::test_np_threshold
spyder_kernels/console/tests/test_console_kernel.py::test_turtle_launch
spyder_kernels/console/tests/test_console_kernel.py::test_matplotlib_inline
# pydicom only packaged in ::sci at the moment
spyder_kernels/utils/tests/test_iofuncs.py::test_load_dicom_files
)
local EPYTEST_IGNORE=()
if ! has_version "dev-python/pandas[${PYTHON_USEDEP}]"; then
EPYTEST_IGNORE+=(
# require pandas
spyder_kernels/utils/tests/test_nsview.py
)
fi
if ! has_version "dev-python/h5py[${PYTHON_USEDEP}]"; then
EPYTEST_DESELECT+=(
# require hdf5
spyder_kernels/utils/tests/test_iofuncs.py::test_save_load_hdf5_files
spyder_kernels/utils/tests/test_dochelpers.py
)
fi
local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
epytest
}
|