Skip to content

Commit

Permalink
Fix syntax for version requirement.
Browse files Browse the repository at this point in the history
  • Loading branch information
rcurtin committed Sep 26, 2023
1 parent a1d3e1d commit e4389a2
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 @@ -2,7 +2,7 @@ rem Build mlpack's Python bindings on a Windows system.

pip install cython numpy delvewheel
rem Pandas 2.1.0 and newer aren't supported on Win32 anymore, so we use an old version.
if "%WIN_ARCH%" == "Win32" pip install pandas=2.0.3
if "%WIN_ARCH%" == "Win32" pip install pandas==2.0.3
if not "%WIN_ARCH%" == "Win32" pip install pandas

rem This is needed later for copying libopenblas.dll to the right place.
Expand Down

0 comments on commit e4389a2

Please sign in to comment.