numpy: bump version to 1.24.3 21184/head
authorAlexandru Ardelean <ardeleanalex@gmail.com>
Sun, 30 Oct 2022 17:31:26 +0000 (19:31 +0200)
committerAlexandru Ardelean <alex@shruggie.ro>
Fri, 26 May 2023 08:16:17 +0000 (11:16 +0300)
Need to also fix build for GCC 13 + musl.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
lang/python/numpy/Makefile
lang/python/numpy/patches/001-unpin-build-dependencies.patch

index d7e485d79ce4db1abdf275dfc9d20085683599ff..bb5b898d1b7086d72a8be00ad8bd3554c6085d87 100644 (file)
@@ -6,11 +6,11 @@
 include $(TOPDIR)/rules.mk
 
 PKG_NAME:=numpy
-PKG_VERSION:=1.23.3
-PKG_RELEASE:=5
+PKG_VERSION:=1.24.3
+PKG_RELEASE:=1
 
 PYPI_NAME:=$(PKG_NAME)
-PKG_HASH:=51bf49c0cd1d52be0a240aa66f3458afc4b95d8993d2d04f0d91fa60c10af6cd
+PKG_HASH:=ab344f1bf21f140adab8e47fdbc7c35a477dc01408791f8ba00d018dd0bc5155
 
 PKG_MAINTAINER:=Alexandru Ardelean <ardeleanalex@gmail.com>
 
@@ -54,6 +54,12 @@ config NUMPY_OPENBLAS_SUPPORT
 endmenu
 endef
 
+ifeq ($(ARCH),x86_64)
+# FIXME: temporary fix for x86_64 with GCC 13 + musl;
+#        numpy does not detect this compiler extension, so we just enable it
+TARGET_CFLAGS += -mavx512f
+endif
+
 define Build/Prepare/numpy-sitecfg
        echo "[DEFAULT]"                                 >  $(PKG_BUILD_DIR)/site.cfg
        echo "library_dirs = $(STAGING_DIR)/usr/lib"     >> $(PKG_BUILD_DIR)/site.cfg
index c167f0729368fbe4c1f512cf08381472aea312ff..1606762b0b93f7fbc571b912ffeff31650a0717f 100644 (file)
@@ -1,9 +1,9 @@
 --- a/pyproject.toml
 +++ b/pyproject.toml
-@@ -2,8 +2,8 @@
+@@ -1,8 +1,8 @@
+ [build-system]
  # Minimum requirements for the build system to execute.
  requires = [
-     "packaging==20.5; platform_machine=='arm64'",  # macos M1
 -    "setuptools==59.2.0",
 -    "wheel==0.37.0",
 +    "setuptools>=59.2.0",