dev-python/pywavelets: Bump to 1.9.0

Signed-off-by: Michał Górny <mgorny@gentoo.org>
This commit is contained in:
Michał Górny
2025-08-05 05:11:45 +02:00
parent 37615750a5
commit 98538a2a66
2 changed files with 51 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST pywavelets-1.8.0.tar.gz 3935274 BLAKE2B 6d8cc9d67292088cbaca22bf57855c6c82936401a138d9020b12b4362acd696abb6321ed9647e63f01f45962bccb9e9ffef308063387a9bfd684a2d021d216ab SHA512 ef6cce59b16473f147dc85ad07cc225670b84b7d90ed251de2084ab10a1661d5fb2a4fd7d634a11299f6924c0fb8278fc5f70154e6011bdad0247ffdf0c8c4c2
DIST pywavelets-1.9.0.tar.gz 3938340 BLAKE2B c8bbf217d7c00f4711a6dfb58f34c6120d40f9806208198ab6ba68437b069a504b9980bfc987aea9138fd89b6c0f9a230b157c5784187caf32df2dcf6e8a9dae SHA512 81928f8a2488047bdfeca0784efc9ec6db5312877b4c011921325d3bc5fa31478399f5868181da55fadbec80808ca01c3bcda98e805e3829ec7928a92038e957

View File

@@ -0,0 +1,50 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
DISTUTILS_EXT=1
DISTUTILS_USE_PEP517=meson-python
PYPI_PN="PyWavelets"
PYTHON_COMPAT=( python3_{11..13} )
inherit distutils-r1 pypi
DESCRIPTION="Discrete Wavelet Transforms in Python"
HOMEPAGE="
https://pywavelets.readthedocs.io/en/latest/
https://github.com/PyWavelets/pywt/
https://pypi.org/project/PyWavelets/
"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux"
IUSE="examples"
RDEPEND="
dev-python/matplotlib[${PYTHON_USEDEP}]
<dev-python/numpy-3[${PYTHON_USEDEP}]
>=dev-python/numpy-1.22.4[${PYTHON_USEDEP}]
"
BDEPEND="
${RDEPEND}
>=dev-python/cython-3.0.4[${PYTHON_USEDEP}]
"
EPYTEST_PLUGINS=()
distutils_enable_tests pytest
python_test() {
rm -rf pywt || die
epytest --pyargs pywt
}
python_install_all() {
distutils-r1_python_install_all
if use examples; then
docinto examples
dodoc -r demo
docompress -x /usr/share/doc/${PF}/examples
fi
}