From 33840414e5a3d21a5f9cb25278fe9e2685c590a9 Mon Sep 17 00:00:00 2001 From: "Bryan W. Weber" Date: Tue, 24 Jul 2018 11:00:35 -0400 Subject: [PATCH] [CI] Fix Appveyor warnings about scripts not on PATH Apparently new versions of NumPy include scripts that Pip feels the need to warn aren't on the PATH. However, we don't use these scripts, so disable the warning --- appveyor.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index edb5badea..19a383559 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -5,12 +5,12 @@ install: C:\Python27-x64\python.exe -m pip install --upgrade setuptools C:\Python27-x64\python.exe -m pip install --upgrade --no-warn-script-location wheel C:\Python27-x64\Scripts\pip.exe install scons - C:\Python27-x64\Scripts\pip.exe install --no-cache-dir numpy + C:\Python27-x64\Scripts\pip.exe install --no-cache-dir --no-warn-script-location numpy C:\Python27-x64\Scripts\pip.exe install --no-warn-script-location cython C:\Python27-x64\Scripts\pip.exe install 3to2 C:\Python27-x64\Scripts\pip.exe install pypiwin32 C:\Python35-x64\python.exe -m pip install --no-cache-dir --upgrade pip - C:\Python35-x64\Scripts\pip.exe install --no-cache-dir numpy + C:\Python35-x64\Scripts\pip.exe install --no-cache-dir --no-warn-script-location numpy build_script: - cmd: C:\Python27-x64\Scripts\scons build -j2 boost_inc_dir=C:\Libraries\boost_1_62_0 debug=n VERBOSE=y python3_cmd=C:\Python35-x64\python.exe