swh:1:snp:3a699297f000109a1bc833f294a54171df990207
Raw File
Tip revision: 371123b67568c64726b0fa3f8c0cb2d7dd42283a authored by Tito Dal Canton on 17 March 2023, 16:11:43 UTC
Set version to 2.1.1 (#4293)
Tip revision: 371123b
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