OpenCV 4.10.0 fails to open EXR images

I am migrating my software from OpenCv 3.2.0 to 4.1.0.
I am able to load every image formats like before but EXR. HDR files works but unfortunately EXR loading triggers an exception
try
{
m_image = cv::imread(path, cv::IMREAD_UNCHANGED);
// m_image = cv::imread(path);// Doesnt change anything
}
catch(…)
{
throw CreateImageException("Can’t create image = " + m_path);
}

Here the file I am trying to load:
https://www.dropbox.com/scl/fi/p3yto6gwagtulk9pya6xf/meadow_2_4k.exr?rlkey=qq4dkkklek08vwn7cdakaatqg&st=nhuxvl7i&dl=0

What to do? What is last last version known to works with EXR?

Thank you! :slight_smile: