Revision 4f3c3d7968440ae471496d29558d38757a21a637 authored by Tito Dal Canton on 14 March 2023, 10:17:04 UTC, committed by Tito Dal Canton on 16 March 2023, 17:04:58 UTC
* Add labels CLI option

* Edit `upload()` to understand labels and refactor a bit

* Wire label CLI arg to upload code

* Address comment

* Tom's suggestion

Co-authored-by: Thomas Dent <thomas.dent@usc.es>
1 parent 624b7cd
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