06e1a3620e
Migrate from distutils which is being deprecated to setuptools. Drop python-pybind which is no longer required: https://github.com/jax-ml/ml_dtypes/blob/v0.3.2/CHANGELOG.md#032---2024-01-03 Signed-off-by: James Hilliard <james.hilliard1@gmail.com> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
19 lines
638 B
Makefile
19 lines
638 B
Makefile
################################################################################
|
|
#
|
|
# python-ml-dtypes
|
|
#
|
|
################################################################################
|
|
|
|
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/39/7d/8d85fcba868758b3a546e6914e727abd8f29ea6918079f816975c9eecd63
|
|
PYTHON_ML_DTYPES_LICENSE = Apache-2.0
|
|
PYTHON_ML_DTYPES_LICENSE_FILES = LICENSE
|
|
PYTHON_ML_DTYPES_SETUP_TYPE = setuptools
|
|
|
|
PYTHON_ML_DTYPES_DEPENDENCIES = \
|
|
host-python-numpy \
|
|
python-numpy
|
|
|
|
$(eval $(python-package))
|