diff options
author | Arthur Zamarin <arthurzam@gentoo.org> | 2022-11-10 21:24:39 +0200 |
---|---|---|
committer | Arthur Zamarin <arthurzam@gentoo.org> | 2022-11-10 21:24:39 +0200 |
commit | 1c5cf0eec3b96e1bfb0ee6fc7e77664f4e8f6489 (patch) | |
tree | eaf5b02a0af6e0b1e24027b7c43c5a771a871215 /dev-python/numpydoc | |
parent | dev-python/distro: drop 1.7.0 (diff) | |
download | gentoo-1c5cf0eec3b96e1bfb0ee6fc7e77664f4e8f6489.tar.gz gentoo-1c5cf0eec3b96e1bfb0ee6fc7e77664f4e8f6489.tar.bz2 gentoo-1c5cf0eec3b96e1bfb0ee6fc7e77664f4e8f6489.zip |
dev-python/numpydoc: drop 1.4.0
Signed-off-by: Arthur Zamarin <arthurzam@gentoo.org>
Diffstat (limited to 'dev-python/numpydoc')
-rw-r--r-- | dev-python/numpydoc/Manifest | 1 | ||||
-rw-r--r-- | dev-python/numpydoc/numpydoc-1.4.0.ebuild | 51 |
2 files changed, 0 insertions, 52 deletions
diff --git a/dev-python/numpydoc/Manifest b/dev-python/numpydoc/Manifest index 675238d471e1..12f4df6c5769 100644 --- a/dev-python/numpydoc/Manifest +++ b/dev-python/numpydoc/Manifest @@ -1,2 +1 @@ -DIST numpydoc-1.4.0.gh.tar.gz 70041 BLAKE2B 34df315b65a034da1bd4742dbbaef77164eaf16c8e56b0b941c6084bf32c0e116d7b4d9795d936380ea4a92ee73b31d61540ff87ed9c129c193f4ead211b47f2 SHA512 24a267149cd696bac552433cf64353aed6f0a3040127ff7cabc42dc0a44e8d7e0cc99d903a6554249c888ef7198adead5aba20c67b0af2e7c738a391e9a9ef02 DIST numpydoc-1.5.0.gh.tar.gz 71498 BLAKE2B 6f46d3b39ceecffe1a604d314bb0b2613219c92a951e3578333da8c0891e928564dd7501258d0270901b9923be7caf8af5d68ed4df7dd8f8e322a7503456fbf7 SHA512 e87535c74767946a71b3094b6591fcfb4d7e42acd505c28b3a5c00ea19c29bb21806c5cb655b5d3aca670d105654956d9b59c06d8be68cd51a1760b219c1c815 diff --git a/dev-python/numpydoc/numpydoc-1.4.0.ebuild b/dev-python/numpydoc/numpydoc-1.4.0.ebuild deleted file mode 100644 index 86388e4b35fd..000000000000 --- a/dev-python/numpydoc/numpydoc-1.4.0.ebuild +++ /dev/null @@ -1,51 +0,0 @@ -# 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="Sphinx extension to support docstrings in Numpy format" -HOMEPAGE=" - https://numpydoc.readthedocs.io/en/latest/ - https://github.com/numpy/numpydoc/ - https://pypi.org/project/numpydoc/ -" -SRC_URI=" - https://github.com/numpy/numpydoc/archive/v${PV}.tar.gz - -> ${P}.gh.tar.gz -" - -LICENSE="BSD" -SLOT="0" -KEYWORDS="amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 sparc x86 ~x64-macos" - -RDEPEND=" - >=dev-python/jinja-2.10[${PYTHON_USEDEP}] - >=dev-python/sphinx-3[${PYTHON_USEDEP}] -" -BDEPEND=" - test? ( - >=dev-python/matplotlib-3.2.1[${PYTHON_USEDEP}] - ) -" - -distutils_enable_tests pytest - -src_prepare() { - sed -i -e 's:--cov-report= --cov=numpydoc::' setup.cfg || die - - distutils-r1_src_prepare -} - -python_test() { - local EPYTEST_DESELECT=( - # these require Internet (intersphinx) - numpydoc/tests/test_full.py::test_MyClass - numpydoc/tests/test_full.py::test_my_function - ) - epytest --pyargs numpydoc -} |