Revision 3135d11ad886c6dd66a2b0150f01b0d677ca0e56 authored by Alex Nitz on 02 March 2022, 22:05:59 UTC, committed by GitHub on 02 March 2022, 22:05:59 UTC
1 parent a37ef9c
Raw File
pyproject.toml
[build-system]
requires = ["setuptools",
            "wheel",
            "cython>=0.29.21",
            "numpy==1.16.0; python_version <= '3.7'",
            "numpy==1.17.3; python_version == '3.8'",
            "numpy==1.19.3; python_version == '3.9'",
            "numpy==1.21.4; python_version =='3.10'",
            "numpy; python_version >= '3.11'",
            ]

# To ensure the best compatibility, try to match the numpy reqs
# where possible to the following used by scipy and the minimum
# of our normal numpy requirements in setup.py
# https://github.com/scipy/oldest-supported-numpy/blob/master/setup.cfg
back to top