diff options
author | Michał Górny <mgorny@gentoo.org> | 2024-10-09 07:58:07 +0200 |
---|---|---|
committer | Michał Górny <mgorny@gentoo.org> | 2024-10-09 08:30:55 +0200 |
commit | 7f18793970961252da4742dce37a451545cc153c (patch) | |
tree | 41c39c470e2f7a29639d6a0546743e65333599a4 /dev-python/iminuit | |
parent | dev-python/iminuit: Remove old (diff) | |
download | gentoo-7f18793970961252da4742dce37a451545cc153c.tar.gz gentoo-7f18793970961252da4742dce37a451545cc153c.tar.bz2 gentoo-7f18793970961252da4742dce37a451545cc153c.zip |
dev-python/iminuit: Bump to 2.30.1
Signed-off-by: Michał Górny <mgorny@gentoo.org>
Diffstat (limited to 'dev-python/iminuit')
-rw-r--r-- | dev-python/iminuit/Manifest | 1 | ||||
-rw-r--r-- | dev-python/iminuit/iminuit-2.30.1.ebuild | 65 |
2 files changed, 66 insertions, 0 deletions
diff --git a/dev-python/iminuit/Manifest b/dev-python/iminuit/Manifest index c6b277ab62b8..1c48fa9633e8 100644 --- a/dev-python/iminuit/Manifest +++ b/dev-python/iminuit/Manifest @@ -1 +1,2 @@ DIST iminuit-2.30.0.tar.gz 1835241 BLAKE2B 26bedcab00a626e4a88895021a2dc25c232efe0e0c6f807d7bf68253340c823cea973eecc6f02f0702932a35f1b01735a9ab3479c78ba3db81f436e8e0ef9183 SHA512 2e0594924ad5b01bd50592356289edca623eace75fede5b44652cf616f9271f7c62ae0949ef13e49e97ac6b3733dde7c2f379df00ccabf9bd7492fe88822580c +DIST iminuit-2.30.1.tar.gz 1835277 BLAKE2B a242aeb5c356c3dbfd20a894b8e259a227a86de1d3f2b69963e3ff7577fe760c0394385f37a0db3772634c41cb49fb3ca8cfbd813b41d7bb85871eeeedfd4d19 SHA512 e14e2bf4a93e9d976739c542b26520fdbcf9c2a8bbd8b9f65bb11aafe5783645aeaa9100aefa3516923b7ff8bb488e3bca6a0f5f010813198333d1931ceb5c5d diff --git a/dev-python/iminuit/iminuit-2.30.1.ebuild b/dev-python/iminuit/iminuit-2.30.1.ebuild new file mode 100644 index 000000000000..22953bd65422 --- /dev/null +++ b/dev-python/iminuit/iminuit-2.30.1.ebuild @@ -0,0 +1,65 @@ +# Copyright 1999-2024 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=scikit-build-core +PYTHON_COMPAT=( python3_{10..13} ) + +inherit cmake distutils-r1 virtualx pypi + +DESCRIPTION="Minuit numerical function minimization in Python" +HOMEPAGE=" + https://github.com/scikit-hep/iminuit/ + https://pypi.org/project/iminuit/ +" + +LICENSE="MIT LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64" + +RDEPEND=" + dev-python/numpy[${PYTHON_USEDEP}] +" +DEPEND=" + >=dev-python/pybind11-2.12[${PYTHON_USEDEP}] +" +BDEPEND=" + ${DEPEND} + dev-python/cython[${PYTHON_USEDEP}] + test? ( + dev-python/annotated-types[${PYTHON_USEDEP}] + dev-python/ipython[${PYTHON_USEDEP}] + dev-python/ipywidgets[${PYTHON_USEDEP}] + dev-python/matplotlib[${PYTHON_USEDEP}] + dev-python/scipy[${PYTHON_USEDEP}] + ) +" + +distutils_enable_tests pytest + +src_prepare() { + distutils-r1_src_prepare + + # do not force LTO + sed -i -e '/INTERPROCEDURAL_OPTIMIZATION/d' CMakeLists.txt || die +} + +src_test() { + virtx distutils-r1_src_test +} + +python_test() { + local EPYTEST_DESELECT=( + # precision error + tests/test_cost.py::test_Template_with_model_2D + + # TODO + tests/test_describe.py::test_with_pydantic_types + ) + + local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1 + # nonfatal implied by virtx + nonfatal epytest || die "Tests failed with ${EPYTHON}" +} |