From 664058fa83f1d8eede5d66418abff6e20bd76ca8 Mon Sep 17 00:00:00 2001 From: Andrey Talman Date: Tue, 2 Aug 2022 19:50:01 -0400 Subject: [PATCH] Pin windows numpy (#82652) (#82686) ### Description Pinned numpy for windows temporarily. Numpy shouldn't need to be pinned, but its upgrade to 1.23 has wreaked havoc on CI. Never mind about the not pinning! ### Issue Related to https://github.com/pytorch/pytorch/issues/82653 ### Testing CI -- win cpu should pass Pull Request resolved: https://github.com/pytorch/pytorch/pull/82652 Approved by: https://github.com/malfet Co-authored-by: Jane Xu --- .../installation-helpers/install_miniconda3.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.jenkins/pytorch/win-test-helpers/installation-helpers/install_miniconda3.bat b/.jenkins/pytorch/win-test-helpers/installation-helpers/install_miniconda3.bat index 657848631245..54b954a0503f 100644 --- a/.jenkins/pytorch/win-test-helpers/installation-helpers/install_miniconda3.bat +++ b/.jenkins/pytorch/win-test-helpers/installation-helpers/install_miniconda3.bat @@ -19,7 +19,7 @@ if "%INSTALL_FRESH_CONDA%"=="1" ( call %CONDA_PARENT_DIR%\Miniconda3\Scripts\activate.bat %CONDA_PARENT_DIR%\Miniconda3 if "%INSTALL_FRESH_CONDA%"=="1" ( - call conda install -y -q python=%PYTHON_VERSION% numpy cffi pyyaml boto3 libuv + call conda install -y -q python=%PYTHON_VERSION% numpy"<1.23" cffi pyyaml boto3 libuv if errorlevel 1 exit /b if not errorlevel 0 exit /b call conda install -y -q -c conda-forge cmake=3.22.3