Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.
1 change: 1 addition & 0 deletions build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -353,6 +353,7 @@ if "%InstallPythonPackages%" == "True" (
:: Run azureml-dataprep tests only in pyhon 3.7 as its an optional dependency
if %PythonVersion% == 3.7 ( call "%PythonExe%" -m pip install --upgrade "azureml-dataprep>=1.1.12" )
call "%PythonExe%" -m pip install --upgrade "%__currentScriptDir%target\%WheelFile%"
if %PythonVersion% == 3.5 ( call "%PythonExe%" -m pip install --upgrade pip )

@najeeb-kazmi najeeb-kazmi Oct 3, 2019

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I'm seeing the error installing scikit on Windows Py27 as well in my PR CI checks. Is anyone else seeing this as well?

If so, should we add this to line 351 instead? #Resolved

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

good point, could u pls work with Mustafa and show him the repro


In reply to: 331269871 [](ancestors = 331269871)

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just had the issue this morning trying to create a Python 3.6 release build. Maybe this should be added for all python versions?


In reply to: 331608183 [](ancestors = 331608183,331269871)

call "%PythonExe%" -m pip install "scikit-learn==0.19.2"
)

Expand Down