-
-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Closed
Description
Description
There's a new crash in devdeps CI, see for instance
https://github.com/astropy/astropy/actions/runs/7362669671/job/20041336702?pr=15795
So far, all I did was checked that I could reproduce locally with numpy dev, which is already good news.
I will take a deeper look on Monday.
Expected behavior
No response
How to Reproduce
# install numpy dev
python -m pip install git+https://github.com/numpy/numpy.git
# build astropy and pyerfa against numpy dev
python -m pip install -e . --no-build-isolation
python -m pip install git+https://github.com/liberfa/pyerfa.git --no-build-isolation
# run tests
pytest astropy
Versions
import platform; print(platform.platform())
import sys; print("Python", sys.version)
import astropy; print("astropy", astropy.__version__)
import numpy; print("Numpy", numpy.__version__)
import erfa; print("pyerfa", erfa.__version__)
# not installed
# import scipy; print("Scipy", scipy.__version__)
# import matplotlib; print("Matplotlib", matplotlib.__version__)
macOS-14.2.1-arm64-arm-64bit
Python 3.12.0 (main, Oct 27 2023, 11:50:57) [Clang 15.0.0 (clang-1500.0.40.1)]
astropy 6.1.dev249+g6568d90661
Numpy 2.0.0.dev0+git20231230.ee3124b
pyerfa 2.0.1.2.dev11+gc498084