From f19d15661237ae28e08f15d9af93d206cb2eb5a8 Mon Sep 17 00:00:00 2001 From: Andrey Talman Date: Tue, 22 Oct 2024 08:34:07 -0400 Subject: [PATCH] Windows pin numpy to 2.1.2 for py 3.13 --- windows/condaenv.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/condaenv.bat b/windows/condaenv.bat index 9b0c256a8..d82fcb844 100644 --- a/windows/condaenv.bat +++ b/windows/condaenv.bat @@ -14,7 +14,7 @@ FOR %%v IN (%DESIRED_PYTHON%) DO ( if "%%v" == "3.10" call conda create -n py!PYTHON_VERSION_STR! -y -q -c=conda-forge numpy=2.0.1 pyyaml boto3 cmake ninja typing_extensions setuptools=72.1.0 python=%%v if "%%v" == "3.11" call conda create -n py!PYTHON_VERSION_STR! -y -q -c=conda-forge numpy=2.0.1 pyyaml boto3 cmake ninja typing_extensions setuptools=72.1.0 python=%%v if "%%v" == "3.12" call conda create -n py!PYTHON_VERSION_STR! -y -q -c=conda-forge numpy=2.0.1 pyyaml boto3 cmake ninja typing_extensions setuptools=72.1.0 python=%%v - if "%%v" == "3.13" call conda create -n py!PYTHON_VERSION_STR! -y -q -c=conda-forge numpy=2.0.1 pyyaml boto3 cmake ninja typing_extensions setuptools python=%%v + if "%%v" == "3.13" call conda create -n py!PYTHON_VERSION_STR! -y -q -c=conda-forge numpy=2.1.2 pyyaml boto3 cmake ninja typing_extensions setuptools python=%%v call conda run -n py!PYTHON_VERSION_STR! pip install mkl-include call conda run -n py!PYTHON_VERSION_STR! pip install mkl-static )