We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acb5cd8 commit 2409064Copy full SHA for 2409064
build_mlpack.bat
@@ -2,8 +2,9 @@ rem Build mlpack's Python bindings on a Windows system.
2
3
pip install cython delvewheel wheel setuptools
4
rem Pandas 2.1.0 and newer aren't supported on Win32 anymore, so we use an old
5
-rem version. We also need to use numpy 1.x.
6
-if "%WIN_ARCH%" == "Win32" pip install "numpy<2" "pandas==%PANDAS_VER%"
+rem version. We also need to use numpy 1.x, but not too new because that will
+rem require a version of gcc that we won't have.
7
+if "%WIN_ARCH%" == "Win32" pip install "numpy==1.26.0" "pandas==%PANDAS_VER%"
8
if not "%WIN_ARCH%" == "Win32" pip install numpy pandas
9
10
python -c "import pandas; print(pandas.__version__)"
0 commit comments