diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2023-01-10 12:47:12 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2023-01-10 13:03:57 +0200 |
commit | f2ad1e285719a90f9fb347f60bb8104b9d0bb4a5 (patch) | |
tree | 35bfed84d9ebe519ddc2dcbc4e28d130c66105e6 /dev-python/plotly | |
parent | sci-visualization/dash: disable py3.8, py3.9 (diff) | |
download | gentoo-f2ad1e285719a90f9fb347f60bb8104b9d0bb4a5.tar.gz gentoo-f2ad1e285719a90f9fb347f60bb8104b9d0bb4a5.tar.bz2 gentoo-f2ad1e285719a90f9fb347f60bb8104b9d0bb4a5.zip |
dev-python/plotly: drop 5.10.0
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/plotly')
-rw-r--r-- | dev-python/plotly/plotly-5.10.0.ebuild | 63 |
1 files changed, 0 insertions, 63 deletions
diff --git a/dev-python/plotly/plotly-5.10.0.ebuild b/dev-python/plotly/plotly-5.10.0.ebuild deleted file mode 100644 index e1b0408ebc5b..000000000000 --- a/dev-python/plotly/plotly-5.10.0.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2022 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=8 - -PYTHON_COMPAT=( python3_{8..10} ) -DISTUTILS_USE_PEP517=setuptools -inherit distutils-r1 - -DESCRIPTION="Browser-based graphing library for Python" -HOMEPAGE="https://plotly.com/python/" -SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" - -LICENSE="MIT" -SLOT="0" -KEYWORDS="~amd64 ~x86" - -# TODO: package plotly-orca and kaleido -RESTRICT="test" - -RDEPEND=" - >=dev-python/tenacity-6.2.0[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - $(python_gen_cond_dep ' - dev-python/backports-tempfile[${PYTHON_USEDEP}] - ' 3.8) - dev-python/inflect[${PYTHON_USEDEP}] - dev-python/ipykernel[${PYTHON_USEDEP}] - dev-python/ipython[${PYTHON_USEDEP}] - dev-python/jupyter[${PYTHON_USEDEP}] - dev-python/jupyterlab[${PYTHON_USEDEP}] - dev-python/matplotlib[${PYTHON_USEDEP}] - dev-python/mock[${PYTHON_USEDEP}] - dev-python/numpy[${PYTHON_USEDEP}] - dev-python/pandas[${PYTHON_USEDEP}] - dev-python/pillow[${PYTHON_USEDEP}] - dev-python/psutil[${PYTHON_USEDEP}] - dev-python/requests[${PYTHON_USEDEP}] - dev-python/pytz[${PYTHON_USEDEP}] - dev-python/scipy[${PYTHON_USEDEP}] - dev-python/shapely[${PYTHON_USEDEP}] - dev-python/statsmodels[${PYTHON_USEDEP}] - dev-python/xarray[${PYTHON_USEDEP}] - sci-libs/pyshp[${PYTHON_USEDEP}] - sci-libs/scikit-image[${PYTHON_USEDEP}] - ) -" - -PATCHES=( - "${FILESDIR}"/${PN}-5.8.0-fix-versioneer-import.patch -) - -distutils_enable_tests pytest - -python_install_all() { - distutils-r1_python_install_all - - mkdir -p "${ED}"/etc/ || die - mv "${ED}"/usr/etc/jupyter "${ED}"/etc/ || die - rmdir "${ED}"/usr/etc || die -} |