diff options
| author | Trevor Gamblin <tgamblin@baylibre.com> | 2025-09-19 12:47:59 -0400 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2025-09-25 11:09:04 +0100 |
| commit | 51e75e216c928e708116b213236c7f0409b757e0 (patch) | |
| tree | 409aba5041ce1a0ab8168fd3bcfa1145592c0f77 /meta/recipes-devtools/python/python3-numpy_2.3.3.bb | |
| parent | 53069738f2063ff560bcd0759a02eda5487f9adb (diff) | |
| download | poky-51e75e216c928e708116b213236c7f0409b757e0.tar.gz | |
python3-numpy: upgrade 2.3.2 -> 2.3.3
Release notes (https://github.com/numpy/numpy/releases/tag/v2.3.3):
The NumPy 2.3.3 release is a patch release split between a number of maintenance
updates and bug fixes. This release supports Python versions 3.11-3.14. Note
that the 3.14.0 final is currently expected in Oct, 2025. This release is based
on 3.14.0rc2.
Reproducibility seems OK.
ptests look OK:
|============================================================================
|Testsuite summary
|# TOTAL: 48954
|# PASS: 46490
|# SKIP: 2426
|# XFAIL: 33
|# FAIL: 0
|# XPASS: 5
|# ERROR: 0
|DURATION: 169
|END: /usr/lib/python3-numpy/ptest
|2025-09-19T15:20
|STOP: ptest-runner
|TOTAL: 1 FAIL: 0
(From OE-Core rev: d92db41f718a79ffd3ed173a46c5567fa002e7a7)
Signed-off-by: Trevor Gamblin <tgamblin@baylibre.com>
Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-numpy_2.3.3.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-numpy_2.3.3.bb | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-numpy_2.3.3.bb b/meta/recipes-devtools/python/python3-numpy_2.3.3.bb new file mode 100644 index 0000000000..dee3bfaa44 --- /dev/null +++ b/meta/recipes-devtools/python/python3-numpy_2.3.3.bb | |||
| @@ -0,0 +1,79 @@ | |||
| 1 | SUMMARY = "A sophisticated Numeric Processing Package for Python" | ||
| 2 | HOMEPAGE = "https://numpy.org/" | ||
| 3 | DESCRIPTION = "NumPy is the fundamental package needed for scientific computing with Python." | ||
| 4 | SECTION = "devel/python" | ||
| 5 | LICENSE = "BSD-3-Clause & BSD-2-Clause & PSF-2.0 & Apache-2.0 & MIT" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=26080bf81b2662c7119d3ef28ae197fd" | ||
| 7 | |||
| 8 | SRCNAME = "numpy" | ||
| 9 | |||
| 10 | SRC_URI = "${GITHUB_BASE_URI}/download/v${PV}/${SRCNAME}-${PV}.tar.gz \ | ||
| 11 | file://0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch \ | ||
| 12 | file://fix_reproducibility.patch \ | ||
| 13 | file://run-ptest \ | ||
| 14 | " | ||
| 15 | SRC_URI[sha256sum] = "ddc7c39727ba62b80dfdbedf400d1c10ddfa8eefbd7ec8dcb118be8b56d31029" | ||
| 16 | |||
| 17 | GITHUB_BASE_URI = "https://github.com/numpy/numpy/releases" | ||
| 18 | UPSTREAM_CHECK_REGEX = "releases/tag/v?(?P<pver>\d+(\.\d+)+)$" | ||
| 19 | |||
| 20 | inherit pkgconfig ptest python_mesonpy github-releases cython | ||
| 21 | |||
| 22 | S = "${UNPACKDIR}/numpy-${PV}" | ||
| 23 | |||
| 24 | PACKAGECONFIG[svml] = "-Ddisable-svml=false,-Ddisable-svml=true" | ||
| 25 | |||
| 26 | # the overflow tests fail with compiler-rt on aarch64 | ||
| 27 | LDFLAGS:append:toolchain-clang:aarch64 = " -rtlib=libgcc -unwindlib=libgcc" | ||
| 28 | |||
| 29 | # Remove references to buildpaths from numpy's __config__.py | ||
| 30 | do_install:append() { | ||
| 31 | sed -i \ | ||
| 32 | -e 's|${S}=||g' \ | ||
| 33 | -e 's|${B}=||g' \ | ||
| 34 | -e 's|${RECIPE_SYSROOT_NATIVE}=||g' \ | ||
| 35 | -e 's|${RECIPE_SYSROOT_NATIVE}||g' \ | ||
| 36 | -e 's|${RECIPE_SYSROOT}=||g' \ | ||
| 37 | -e 's|${RECIPE_SYSROOT}||g' ${D}${PYTHON_SITEPACKAGES_DIR}/numpy/__config__.py | ||
| 38 | |||
| 39 | nativepython3 -mcompileall -s ${D} ${D}${PYTHON_SITEPACKAGES_DIR}/numpy/__config__.py | ||
| 40 | } | ||
| 41 | |||
| 42 | FILES:${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/_core/lib/*.a \ | ||
| 43 | ${PYTHON_SITEPACKAGES_DIR}/numpy/random/lib/*.a \ | ||
| 44 | " | ||
| 45 | |||
| 46 | # install what is needed for numpy.test() | ||
| 47 | RDEPENDS:${PN} = "\ | ||
| 48 | python3-compression \ | ||
| 49 | python3-ctypes \ | ||
| 50 | python3-datetime \ | ||
| 51 | python3-difflib \ | ||
| 52 | python3-doctest \ | ||
| 53 | python3-email \ | ||
| 54 | python3-json \ | ||
| 55 | python3-misc \ | ||
| 56 | python3-mmap \ | ||
| 57 | python3-multiprocessing \ | ||
| 58 | python3-netclient \ | ||
| 59 | python3-numbers \ | ||
| 60 | python3-pickle \ | ||
| 61 | python3-pkgutil \ | ||
| 62 | python3-pprint \ | ||
| 63 | python3-pydoc \ | ||
| 64 | python3-shell \ | ||
| 65 | python3-threading \ | ||
| 66 | python3-unittest \ | ||
| 67 | " | ||
| 68 | RDEPENDS:${PN}-ptest += "\ | ||
| 69 | ldd \ | ||
| 70 | meson \ | ||
| 71 | python3-hypothesis \ | ||
| 72 | python3-pytest \ | ||
| 73 | python3-resource \ | ||
| 74 | python3-sortedcontainers \ | ||
| 75 | python3-typing-extensions \ | ||
| 76 | python3-unittest-automake-output \ | ||
| 77 | " | ||
| 78 | |||
| 79 | BBCLASSEXTEND = "native nativesdk" | ||
