You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 11, 2024. It is now read-only.
PEP 518 specifies that Python packages can include a pyproject.toml file that specifies build-time dependencies. This is intended to replace setup_requires, which was never useful for us (and many others) since setup_requires was only taken into account when setup() was run, whereas e.g. astropy-helpers is needed to even run setup.py at all. With PEP 518 now supported by pip, we could add a pyproject.toml file in astropy and affiliated packages with:
optionally with a fixed version for astropy-helpers. This would then allow us, I think, to get rid of a lot of ah_bootstrap.py or simplify it significantly.