From 50b56a2525a8c4624cd9205e67efd1545cb0f717 Mon Sep 17 00:00:00 2001 From: Navaneet Villodi <11260095+nauaneed@users.noreply.github.com> Date: Sun, 18 Aug 2024 16:17:35 +0530 Subject: [PATCH] fix: numpy version inconsistency requirements.txt and setup.py has "numpy" specified but pyproject.toml has specified "oldest-supported-numpy". So, pyproject.toml is changed. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index ece6eb95..bef3a6db 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ requires = [ "compyle>=0.8", "cyarray", "mako", - "oldest-supported-numpy", + "numpy", "pytools", "setuptools>=42.0.0", "wheel>=0.29.0",