Revision f3c887eba66a012f0e47314ec7f38c5453c02824 authored by Han Wang on 03 March 2024, 23:06:33 UTC, committed by GitHub on 03 March 2024, 23:06:33 UTC
* avoid using for loop in space psds; fix typo

* change back to astropy constants
1 parent 56b544f
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