Skip to content

Commit

Permalink
Maybe it all needs to be escaped?
Browse files Browse the repository at this point in the history
  • Loading branch information
rcurtin committed Sep 6, 2024
1 parent 52a9cda commit 09b1953
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build_mlpack.bat
Original file line number Diff line number Diff line change
Expand Up @@ -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" pip install numpy<2 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__)"
Expand Down

0 comments on commit 09b1953

Please sign in to comment.