math/py-ml-dtypes: Update to 0.3.2

Changes:	https://github.com/jax-ml/ml_dtypes/releases
This commit is contained in:
Po-Chuan Hsieh 2024-02-21 22:43:46 +08:00
parent 71c0f84868
commit 72d924c6a4
No known key found for this signature in database
GPG Key ID: 9A4BD10F002DD04B
3 changed files with 12 additions and 14 deletions

View File

@ -1,5 +1,5 @@
PORTNAME= ml-dtypes
PORTVERSION= 0.3.1
PORTVERSION= 0.3.2
CATEGORIES= math python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
@ -13,7 +13,6 @@ LICENSE= APACHE20
LICENSE_FILE= ${WRKSRC}/LICENSE
BUILD_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.23.3,1:math/py-numpy@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}pybind11>=2.11.1:devel/py-pybind11@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}setuptools>=0:devel/py-setuptools@${PY_FLAVOR} \
${PYTHON_PKGNAMEPREFIX}wheel>=0:devel/py-wheel@${PY_FLAVOR}
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}numpy>=1.23.3,1:math/py-numpy@${PY_FLAVOR}

View File

@ -1,3 +1,3 @@
TIMESTAMP = 1695588832
SHA256 (ml_dtypes-0.3.1.tar.gz) = 60778f99194b4c4f36ba42da200b35ef851ce4d4af698aaf70f5b91fe70fc611
SIZE (ml_dtypes-0.3.1.tar.gz) = 691712
TIMESTAMP = 1708449396
SHA256 (ml_dtypes-0.3.2.tar.gz) = 533059bc5f1764fac071ef54598db358c167c51a718f68f5bb55e3dee79d2967
SIZE (ml_dtypes-0.3.2.tar.gz) = 692014

View File

@ -1,27 +1,26 @@
--- pyproject.toml.orig 2023-09-19 22:47:59 UTC
--- pyproject.toml.orig 2024-01-03 18:51:44 UTC
+++ pyproject.toml
@@ -17,10 +17,7 @@ keywords = []
@@ -17,10 +17,7 @@ dependencies = [
# pip dependencies of the project
dependencies = [
# Ensure numpy release supports Python version.
- "numpy>1.20",
- "numpy>=1.21.2; python_version>'3.9'",
- "numpy>=1.23.3; python_version>'3.10'",
- "numpy>=1.26.0; python_version>'3.12'",
+ "numpy>=1.21.2",
- "numpy>=1.21.2; python_version>='3.10'",
- "numpy>=1.23.3; python_version>='3.11'",
- "numpy>=1.26.0; python_version>='3.12'",
+ "numpy>=1.23.3",
]
[project.urls]
@@ -49,11 +46,9 @@ pyink-use-majority-quotes = true
@@ -49,10 +46,8 @@ requires = [
[build-system]
requires = [
# Build with oldest supported numpy for each Python version.
- "numpy~=1.21.2; python_version<'3.11'",
- "numpy~=1.23.3; python_version>='3.11' and python_version<'3.12'",
- "numpy~=1.26.0; python_version>='3.12'",
+ "numpy>=1.21.2",
"pybind11~=2.11.1",
- "setuptools~=68.1.0",
+ "numpy>=1.23.3",
+ "setuptools",
]
build-backend = "setuptools.build_meta"