From 2c2c54e53d4811fbf04e5cc7ed6771a039122339 Mon Sep 17 00:00:00 2001 From: Jacob Hayes Date: Fri, 23 Apr 2021 13:44:17 -0400 Subject: [PATCH] Can't override oldest-supported-numpy --- pyproject.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index be1c2a0..9994a0d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,8 @@ build-backend = "setuptools.build_meta" # We need at least 1.19.0 for ABI compatibility, but otherwise prefer the oldest available wheel (eg: 1.19.3 for py3.9) requires = [ "numpy==1.19.0; python_version<'3.9'", - "oldest-supported-numpy", + "numpy==1.19.3; python_version<='3.9'", + "numpy==1.19.3; python_version>'3.9'", "setuptools", "wheel" ]