Closed astrofrog closed 12 months ago
We now have developer wheels on anaconda (same URL as astropy) so the following works:
#!/bin/bash -xe
rm -rf testenv
python -m venv testenv
source testenv/bin/activate
pip install --extra-index-url https://pypi.anaconda.org/scientific-python-nightly-wheels/simple numpy --pre
pip install --extra-index-url https://pypi.anaconda.org/liberfa/simple pyerfa --pre
pip install --extra-index-url https://pypi.anaconda.org/astropy/simple astropy astropy-healpix --pre
pip freeze
python -c 'import astropy_healpix'
To reproduce the issue:
Result:
This is expected, but makes it difficult for downstream packages like reproject which need astropy-healpix as a dependency and want to test against numpy dev.
I'll set up some nightly wheels for astropy-healpix since there's no harm in doing that and will solve this issue.