diff options
| author | wangmy <wangmy@fujitsu.com> | 2021-12-27 17:08:48 +0800 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-05 17:18:15 +0000 |
| commit | e132bae431622eaa62d50443e1902ca54275eba5 (patch) | |
| tree | 0a0ce6333bd04768c381abfd073fa5a2c2127782 /meta/recipes-devtools/python/python3-numpy_1.21.5.bb | |
| parent | 5d05f06f4cb9e23cb93578a17e2a20b2c94ec816 (diff) | |
| download | poky-e132bae431622eaa62d50443e1902ca54275eba5.tar.gz | |
python3-numpy: upgrade 1.21.4 -> 1.21.5
Changelog:
==========
Bugs fixed for this release <https://github.com/numpy/numpy/pull/#####>
#20357: MAINT: Do not forward __(deep)copy__ calls of _GenericAlias...
#20462: BUG: Fix float16 einsum fastpaths using wrong tempvar
#20463: BUG, DIST: Print os error message when the executable not exist
#20464: BLD: Verify the ability to compile C++ sources before initiating...
#20465: BUG: Force npymath to respect npy_longdouble
#20466: BUG: Fix failure to create aligned, empty structured dtype
#20467: ENH: provide a convenience function to replace npy_load_module
#20495: MAINT: update wheel to version that supports python3.10
#20497: BUG: Clear errors correctly in F2PY conversions
#20613: DEV: add a warningfilter to fix pytest workflow.
#20618: MAINT: Help boost::python libraries at least not crash
(From OE-Core rev: 956d6811ed0ae6db759a663866eed4977f994ad8)
Signed-off-by: Wang Mingyu <wangmy@fujitsu.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-devtools/python/python3-numpy_1.21.5.bb')
| -rw-r--r-- | meta/recipes-devtools/python/python3-numpy_1.21.5.bb | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/meta/recipes-devtools/python/python3-numpy_1.21.5.bb b/meta/recipes-devtools/python/python3-numpy_1.21.5.bb new file mode 100644 index 0000000000..bdf99b492b --- /dev/null +++ b/meta/recipes-devtools/python/python3-numpy_1.21.5.bb | |||
| @@ -0,0 +1,59 @@ | |||
| 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 & Apache-2.0 & MIT" | ||
| 6 | LIC_FILES_CHKSUM = "file://LICENSE.txt;md5=b076ad374a7d311ba3126a22b2d52596" | ||
| 7 | |||
| 8 | SRCNAME = "numpy" | ||
| 9 | |||
| 10 | SRC_URI = "https://github.com/${SRCNAME}/${SRCNAME}/releases/download/v${PV}/${SRCNAME}-${PV}.tar.gz \ | ||
| 11 | file://0001-Don-t-search-usr-and-so-on-for-libraries-by-default-.patch \ | ||
| 12 | file://0001-numpy-core-Define-RISCV-32-support.patch \ | ||
| 13 | file://run-ptest \ | ||
| 14 | " | ||
| 15 | SRC_URI[sha256sum] = "1a7ee0ffb35dc7489aebe5185a483f4c43b0d2cf784c3c9940f975a7dde56506" | ||
| 16 | |||
| 17 | UPSTREAM_CHECK_URI = "https://github.com/numpy/numpy/releases" | ||
| 18 | UPSTREAM_CHECK_REGEX = "(?P<pver>\d+(\.\d+)+)\.tar" | ||
| 19 | |||
| 20 | DEPENDS += "python3-cython-native" | ||
| 21 | |||
| 22 | inherit ptest setuptools3 | ||
| 23 | |||
| 24 | S = "${WORKDIR}/numpy-${PV}" | ||
| 25 | |||
| 26 | CLEANBROKEN = "1" | ||
| 27 | |||
| 28 | FILES:${PN}-staticdev += "${PYTHON_SITEPACKAGES_DIR}/numpy/core/lib/*.a ${PYTHON_SITEPACKAGES_DIR}/numpy/random/lib/*.a" | ||
| 29 | |||
| 30 | # install what is needed for numpy.test() | ||
| 31 | RDEPENDS:${PN} = "${PYTHON_PN}-unittest \ | ||
| 32 | ${PYTHON_PN}-difflib \ | ||
| 33 | ${PYTHON_PN}-pprint \ | ||
| 34 | ${PYTHON_PN}-pickle \ | ||
| 35 | ${PYTHON_PN}-shell \ | ||
| 36 | ${PYTHON_PN}-doctest \ | ||
| 37 | ${PYTHON_PN}-datetime \ | ||
| 38 | ${PYTHON_PN}-distutils \ | ||
| 39 | ${PYTHON_PN}-misc \ | ||
| 40 | ${PYTHON_PN}-mmap \ | ||
| 41 | ${PYTHON_PN}-netclient \ | ||
| 42 | ${PYTHON_PN}-numbers \ | ||
| 43 | ${PYTHON_PN}-pydoc \ | ||
| 44 | ${PYTHON_PN}-pkgutil \ | ||
| 45 | ${PYTHON_PN}-email \ | ||
| 46 | ${PYTHON_PN}-compression \ | ||
| 47 | ${PYTHON_PN}-ctypes \ | ||
| 48 | ${PYTHON_PN}-threading \ | ||
| 49 | ${PYTHON_PN}-multiprocessing \ | ||
| 50 | ${PYTHON_PN}-json \ | ||
| 51 | " | ||
| 52 | RDEPENDS:${PN}-ptest += "${PYTHON_PN}-pytest \ | ||
| 53 | ${PYTHON_PN}-hypothesis \ | ||
| 54 | ${PYTHON_PN}-sortedcontainers \ | ||
| 55 | ${PYTHON_PN}-resource \ | ||
| 56 | ldd \ | ||
| 57 | " | ||
| 58 | |||
| 59 | BBCLASSEXTEND = "native nativesdk" | ||
