From 52a9cda057dcc182cbaeabedff0da89779c5396e Mon Sep 17 00:00:00 2001 From: Ryan Curtin Date: Fri, 6 Sep 2024 08:11:42 -0400 Subject: [PATCH] Not thinking very hard? --- build_mlpack.bat | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build_mlpack.bat b/build_mlpack.bat index ee91d37..cdd0d96 100755 --- a/build_mlpack.bat +++ b/build_mlpack.bat @@ -3,7 +3,7 @@ rem Build mlpack's Python bindings on a Windows system. pip install cython delvewheel wheel setuptools rem Pandas 2.1.0 and newer aren't supported on Win32 anymore, so we use an old rem version. We also need to use numpy 1.x. -if "%WIN_ARCH%" == "Win32" numpy<2 pip install pandas==%PANDAS_VER% +if "%WIN_ARCH%" == "Win32" pip install numpy<2 pandas==%PANDAS_VER% if not "%WIN_ARCH%" == "Win32" pip install numpy pandas python -c "import pandas; print(pandas.__version__)"