mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-08-24 18:58:08 -07:00
dev-python/spyder-kernels: Bump to 2.4.0
Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
@@ -1 +1,2 @@
|
||||
DIST spyder-kernels-2.3.3.gh.tar.gz 91175 BLAKE2B 351852cd0eae2186f799ac329d2840ca1d427876b987a5eb0a5965020b1be38f1bf82ddd771648aa7d8e6027a1c1b1f3596fbe792fbf8e4b868bba8cbd6190db SHA512 764b935d3dffa531afc092e40aecc3d456261704703744e692a54ddf4ae22b80729912845dcc5c1b5546156efbacdc50aba84c19f9a8aa03435166cd4a4621e6
|
||||
DIST spyder-kernels-2.4.0.gh.tar.gz 92247 BLAKE2B 7dd5a5c6f43de36f23ebac2707e9dc06ced20bb965325b0a31657d03b49cdd993aafe6f1d52d7108dbd2aa8fddf3ae7a6e2da4c2b75eabf05f8302b2119cd3cd SHA512 6744cd05f4cbe452b0b8fa4f416055b8a69f75e49a10b9de3f2781b11f63c84ed7a6686e1a00bbc2020ba015a0cb7f350a6e85665270629a0e714ffe80bcb08d
|
||||
|
||||
75
dev-python/spyder-kernels/spyder-kernels-2.4.0.ebuild
Normal file
75
dev-python/spyder-kernels/spyder-kernels-2.4.0.ebuild
Normal file
@@ -0,0 +1,75 @@
|
||||
# Copyright 1999-2022 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
DISTUTILS_USE_PEP517=setuptools
|
||||
PYTHON_COMPAT=( python3_{8..11} )
|
||||
|
||||
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/spyder-kernels/archive/v${PV}.tar.gz
|
||||
-> ${P}.gh.tar.gz
|
||||
"
|
||||
|
||||
LICENSE="MIT"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
|
||||
RDEPEND="
|
||||
dev-python/cloudpickle[${PYTHON_USEDEP}]
|
||||
<dev-python/ipykernel-7[${PYTHON_USEDEP}]
|
||||
>=dev-python/ipykernel-6.16.1[${PYTHON_USEDEP}]
|
||||
>=dev-python/ipython-7.31.1[${PYTHON_USEDEP}]
|
||||
<dev-python/jupyter_client-8[${PYTHON_USEDEP}]
|
||||
>=dev-python/jupyter_client-7.3.4[${PYTHON_USEDEP}]
|
||||
<dev-python/jupyter_client-8[${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/dask[${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
|
||||
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
|
||||
)
|
||||
|
||||
python_prepare_all() {
|
||||
# No additional test failures with ipython-8: 843251
|
||||
sed -i -e "/ipython/s:,<8::" setup.py || die
|
||||
|
||||
distutils-r1_python_prepare_all
|
||||
}
|
||||
Reference in New Issue
Block a user