diff --git a/pyproject.toml b/pyproject.toml index 8161e8ad752da..2b78147e9294d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,9 +6,10 @@ requires = [ "wheel", "Cython>=0.29.21,<3", # Note: sync with setup.py "numpy==1.16.5; python_version=='3.7' and platform_system!='AIX'", - "numpy==1.17.3; python_version>='3.8' and platform_system!='AIX'", + "numpy==1.17.3; python_version=='3.8' and platform_system!='AIX'", "numpy==1.16.5; python_version=='3.7' and platform_system=='AIX'", - "numpy==1.17.3; python_version>='3.8' and platform_system=='AIX'", + "numpy==1.17.3; python_version=='3.8' and platform_system=='AIX'", + "numpy; python_version>='3.9'", ] [tool.black]