numpyを実行した時"The current Numpy installation fails to pass a sanity check due to a bug in the windows runtime."とエラーになったら

numpy v 1.19.4を実行したときに下記のようなエラーが出るようになってしまいました。
XXXXXXXXには実行しているPythonのファイルが表示されています。

RuntimeError: The current Numpy installation ('XXXXXXXX') fails to pass a sanity check due to a bug in the windows runtime. See this issue for more information: https://tinyurl.com/y3dm3h86

原因はWindows側にあるようです。
暫定的な回避策はnumpyのバージョンを下げることみたいです。

pip install numpy==1.19.3

qiita.com