You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

65 lines
2.1 KiB

# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_USE_PEP517=setuptools
PYPI_NO_NORMALIZE=1
PYTHON_COMPAT=( python3_{10..11} )
inherit distutils-r1 pypi
DESCRIPTION="Kernels used by spyder on its ipython console"
HOMEPAGE="
https://github.com/spyder-ide/spyder-kernels/
https://pypi.org/project/spyder-kernels/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RDEPEND="
dev-python/cloudpickle[${PYTHON_USEDEP}]
<dev-python/ipykernel-7[${PYTHON_USEDEP}]
>=dev-python/ipykernel-6.23.2[${PYTHON_USEDEP}]
<dev-python/ipython-9[${PYTHON_USEDEP}]
>=dev-python/ipython-8.11.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/pyzmq-22.1.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/pandas[${PYTHON_USEDEP}]
dev-python/scipy[${PYTHON_USEDEP}]
dev-python/xarray[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
)
"
distutils_enable_tests pytest
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
)