Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH 1/1] package/python-ml-dtypes: bump to version 0.3.2
@ 2024-01-10  3:59 James Hilliard
  2024-01-10 19:06 ` Julien Olivain
  0 siblings, 1 reply; 3+ messages in thread
From: James Hilliard @ 2024-01-10  3:59 UTC (permalink / raw)
  To: buildroot; +Cc: Julien Olivain, James Hilliard, Asaf Kahlon

Migrate from distutils which is being deprecated to setuptools.

Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
---
 package/python-ml-dtypes/python-ml-dtypes.hash | 4 ++--
 package/python-ml-dtypes/python-ml-dtypes.mk   | 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/package/python-ml-dtypes/python-ml-dtypes.hash b/package/python-ml-dtypes/python-ml-dtypes.hash
index a440268e39..53bfacb528 100644
--- a/package/python-ml-dtypes/python-ml-dtypes.hash
+++ b/package/python-ml-dtypes/python-ml-dtypes.hash
@@ -1,5 +1,5 @@
 # md5, sha256 from https://pypi.org/pypi/ml_dtypes/json
-md5  6adbb05530819bdb4a78d2372d187fe2  ml_dtypes-0.3.1.tar.gz
-sha256  60778f99194b4c4f36ba42da200b35ef851ce4d4af698aaf70f5b91fe70fc611  ml_dtypes-0.3.1.tar.gz
+md5  438c04dc0d941ec1b3b71667225c74c8  ml_dtypes-0.3.2.tar.gz
+sha256  533059bc5f1764fac071ef54598db358c167c51a718f68f5bb55e3dee79d2967  ml_dtypes-0.3.2.tar.gz
 # Locally computed sha256 checksums
 sha256  cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  LICENSE
diff --git a/package/python-ml-dtypes/python-ml-dtypes.mk b/package/python-ml-dtypes/python-ml-dtypes.mk
index 92d23bece4..b346dc5e9b 100644
--- a/package/python-ml-dtypes/python-ml-dtypes.mk
+++ b/package/python-ml-dtypes/python-ml-dtypes.mk
@@ -4,12 +4,12 @@
 #
 ################################################################################
 
-PYTHON_ML_DTYPES_VERSION = 0.3.1
+PYTHON_ML_DTYPES_VERSION = 0.3.2
 PYTHON_ML_DTYPES_SOURCE = ml_dtypes-$(PYTHON_ML_DTYPES_VERSION).tar.gz
-PYTHON_ML_DTYPES_SITE = https://files.pythonhosted.org/packages/16/6e/9a7a51ee1ca24b8e92109128260c5aec8340c8fe5572e9ceecddae559abe
+PYTHON_ML_DTYPES_SITE = https://files.pythonhosted.org/packages/39/7d/8d85fcba868758b3a546e6914e727abd8f29ea6918079f816975c9eecd63
 PYTHON_ML_DTYPES_LICENSE = Apache-2.0
 PYTHON_ML_DTYPES_LICENSE_FILES = LICENSE
-PYTHON_ML_DTYPES_SETUP_TYPE = distutils
+PYTHON_ML_DTYPES_SETUP_TYPE = setuptools
 
 PYTHON_ML_DTYPES_DEPENDENCIES = \
 	host-python-numpy \
-- 
2.34.1

_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/python-ml-dtypes: bump to version 0.3.2
  2024-01-10  3:59 [Buildroot] [PATCH 1/1] package/python-ml-dtypes: bump to version 0.3.2 James Hilliard
@ 2024-01-10 19:06 ` Julien Olivain
  2024-02-06 12:53   ` Thomas Petazzoni via buildroot
  0 siblings, 1 reply; 3+ messages in thread
From: Julien Olivain @ 2024-01-10 19:06 UTC (permalink / raw)
  To: James Hilliard; +Cc: Asaf Kahlon, buildroot

Hi James,

The python-ml_dtypes v0.3.2 changelog says that the pybind11 build
requirement was removed. See:
https://github.com/jax-ml/ml_dtypes/blob/v0.3.2/CHANGELOG.md#032---2024-01-03

This patch does not remove it is the _DEPENDENCIES. Did you try to build 
the
package without it?

On 10/01/2024 04:59, James Hilliard wrote:
> Migrate from distutils which is being deprecated to setuptools.
> 
> Signed-off-by: James Hilliard <james.hilliard1@gmail.com>
> ---
>  package/python-ml-dtypes/python-ml-dtypes.hash | 4 ++--
>  package/python-ml-dtypes/python-ml-dtypes.mk   | 6 +++---
>  2 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/package/python-ml-dtypes/python-ml-dtypes.hash 
> b/package/python-ml-dtypes/python-ml-dtypes.hash
> index a440268e39..53bfacb528 100644
> --- a/package/python-ml-dtypes/python-ml-dtypes.hash
> +++ b/package/python-ml-dtypes/python-ml-dtypes.hash
> @@ -1,5 +1,5 @@
>  # md5, sha256 from https://pypi.org/pypi/ml_dtypes/json
> -md5  6adbb05530819bdb4a78d2372d187fe2  ml_dtypes-0.3.1.tar.gz
> -sha256  
> 60778f99194b4c4f36ba42da200b35ef851ce4d4af698aaf70f5b91fe70fc611  
> ml_dtypes-0.3.1.tar.gz
> +md5  438c04dc0d941ec1b3b71667225c74c8  ml_dtypes-0.3.2.tar.gz
> +sha256  
> 533059bc5f1764fac071ef54598db358c167c51a718f68f5bb55e3dee79d2967  
> ml_dtypes-0.3.2.tar.gz
>  # Locally computed sha256 checksums
>  sha256  
> cfc7749b96f63bd31c3c42b5c471bf756814053e847c10f3eb003417bc523d30  
> LICENSE
> diff --git a/package/python-ml-dtypes/python-ml-dtypes.mk 
> b/package/python-ml-dtypes/python-ml-dtypes.mk
> index 92d23bece4..b346dc5e9b 100644
> --- a/package/python-ml-dtypes/python-ml-dtypes.mk
> +++ b/package/python-ml-dtypes/python-ml-dtypes.mk
> @@ -4,12 +4,12 @@
>  #
>  
> ################################################################################
> 
> -PYTHON_ML_DTYPES_VERSION = 0.3.1
> +PYTHON_ML_DTYPES_VERSION = 0.3.2
>  PYTHON_ML_DTYPES_SOURCE = ml_dtypes-$(PYTHON_ML_DTYPES_VERSION).tar.gz
> -PYTHON_ML_DTYPES_SITE = 
> https://files.pythonhosted.org/packages/16/6e/9a7a51ee1ca24b8e92109128260c5aec8340c8fe5572e9ceecddae559abe
> +PYTHON_ML_DTYPES_SITE = 
> https://files.pythonhosted.org/packages/39/7d/8d85fcba868758b3a546e6914e727abd8f29ea6918079f816975c9eecd63
>  PYTHON_ML_DTYPES_LICENSE = Apache-2.0
>  PYTHON_ML_DTYPES_LICENSE_FILES = LICENSE
> -PYTHON_ML_DTYPES_SETUP_TYPE = distutils
> +PYTHON_ML_DTYPES_SETUP_TYPE = setuptools
> 
>  PYTHON_ML_DTYPES_DEPENDENCIES = \
>  	host-python-numpy \
> --
> 2.34.1

Best regards,

Julien.
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [Buildroot] [PATCH 1/1] package/python-ml-dtypes: bump to version 0.3.2
  2024-01-10 19:06 ` Julien Olivain
@ 2024-02-06 12:53   ` Thomas Petazzoni via buildroot
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Petazzoni via buildroot @ 2024-02-06 12:53 UTC (permalink / raw)
  To: Julien Olivain; +Cc: James Hilliard, Asaf Kahlon, buildroot

Hello Julien, James,

On Wed, 10 Jan 2024 20:06:09 +0100
Julien Olivain <ju.o@free.fr> wrote:

> The python-ml_dtypes v0.3.2 changelog says that the pybind11 build
> requirement was removed. See:
> https://github.com/jax-ml/ml_dtypes/blob/v0.3.2/CHANGELOG.md#032---2024-01-03
> 
> This patch does not remove it is the _DEPENDENCIES. Did you try to build 
> the package without it?

Thanks for the feedback. There's been no feedback from James, so I'll
mark this patch as Changes Requested for now.

Thanks!

Thomas
-- 
Thomas Petazzoni, co-owner and CEO, Bootlin
Embedded Linux and Kernel engineering and training
https://bootlin.com
_______________________________________________
buildroot mailing list
buildroot@buildroot.org
https://lists.buildroot.org/mailman/listinfo/buildroot

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-02-06 12:54 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-01-10  3:59 [Buildroot] [PATCH 1/1] package/python-ml-dtypes: bump to version 0.3.2 James Hilliard
2024-01-10 19:06 ` Julien Olivain
2024-02-06 12:53   ` Thomas Petazzoni via buildroot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox