https://github.com/gwastro/pycbc
Raw File
Tip revision: 435195910903613deccc0af7acbf306623ba5a0b authored by Alexander Harvey Nitz on 25 June 2024, 21:18:37 UTC
update
Tip revision: 4351959
pyproject.toml
[build-system]
requires = ["setuptools",
            "wheel",
            "cython>=3.0.0",
            "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==1.23.4; python_version=='3.11'",
            "numpy; python_version >= '3.12'",
            ]

# 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