Reproducing code example:
After release 1.19.3
- The following error is raised:
Fatal Python error: Segmentation fault (core dumped)
(I just enabled the following flag: export PYTHONFAULTHANDLER=1 but not there is a good output)
I'm using python3.6 virtualenv, using a docker container.
But If I install numpy==1.19.2 the error is not raised.
NumPy/Python version information:
python -c "import sys, numpy; print(numpy.__version__, sys.version)"
🔴 With error
1.19.3 3.6.2 (default, Jul 29 2017, 00:00:00)
[GCC 4.8.4]
🟢 without error
1.19.2 3.6.2 (default, Jul 29 2017, 00:00:00)
[GCC 4.8.4]
What command should I executed to get more info about this issue?