Revision 1b0a5daa5bcaa4f68cf92a89c736a74179d52fbd authored by maxtrevor on 28 September 2023, 18:48:14 UTC, committed by GitHub on 28 September 2023, 18:48:14 UTC
* Added assert statement to test for only 2 dq bins

* Addressed Tom's comment to increase intuitiveness of dq flag likelihood plot

* Incorporated Tom's suggestions

* Edited y-axis label
1 parent 7fd8c02
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