Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Bump version to 1.6.1 to fix dprep issue. #385

Merged
merged 2 commits into from
Dec 6, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.cmd
Original file line number Diff line number Diff line change
Expand Up @@ -393,7 +393,7 @@ if "%InstallPythonPackages%" == "True" (
if %PythonVersion% == 2.7 (
call "%PythonExe%" -m pip install --upgrade pyzmq
) else (
call "%PythonExe%" -m pip install --upgrade "azureml-dataprep>=1.1.12"
call "%PythonExe%" -m pip install --upgrade "azureml-dataprep>=1.1.33"
)

call "%PythonExe%" -m pip install --upgrade "%__currentScriptDir%target\%WheelFile%"
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -290,7 +290,7 @@ then
"${PythonExe}" -m pip install --upgrade pytest-remotedata
fi

"${PythonExe}" -m pip install --upgrade "azureml-dataprep>=1.1.12"
"${PythonExe}" -m pip install --upgrade "azureml-dataprep>=1.1.33"
fi
"${PythonExe}" -m pip install --upgrade "${Wheel}"
"${PythonExe}" -m pip install "scikit-learn==0.19.2"
Expand Down
2 changes: 1 addition & 1 deletion src/DotNetBridge/DotNetBridge.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
<PackageReference Include="Microsoft.ML.Vision" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.Ensemble" Version="0.16.0" />
<PackageReference Include="Microsoft.ML.TimeSeries" Version="1.4.0" />
<PackageReference Include="Microsoft.DataPrep" Version="0.0.3.1-preview" />
<PackageReference Include="Microsoft.DataPrep" Version="0.0.3.2-preview" />
<PackageReference Include="TensorFlow.NET" Version="0.11.8.1" />
<PackageReference Include="SciSharp.TensorFlow.Redist" Version="1.14.0" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Platforms/build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
<PackageReference Include="Microsoft.ML.Vision" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.Ensemble" Version="0.16.0" />
<PackageReference Include="Microsoft.ML.TimeSeries" Version="1.4.0" />
<PackageReference Include="Microsoft.DataPrep" Version="0.0.3.1-preview" />
<PackageReference Include="Microsoft.DataPrep" Version="0.0.3.2-preview" />
<PackageReference Include="TensorFlow.NET" Version="0.11.8.1" />
<PackageReference Include="SciSharp.TensorFlow.Redist" Version="1.14.0" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/python/nimbusml/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
Microsoft Machine Learning for Python
"""

__version__ = '1.6.0'
__version__ = '1.6.1'

# CoreCLR version of MicrosoftML is built on Windows.
# But file permissions are not preserved when it's copied to Linux.
Expand Down
4 changes: 2 additions & 2 deletions src/python/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
# Versions should comply with PEP440. For a discussion on
# single-sourcing the version across setup.py and the project code, see
# https://packaging.python.org/en/latest/single_source_version.html
version='1.6.0',
version='1.6.1',

description='NimbusML',
long_description=long_description,
Expand Down Expand Up @@ -115,7 +115,7 @@
'nose>=1.3', 'pytest>=4.4.0',
'graphviz', 'imageio',
],
'dprep': ['azureml-dataprep>=1.1.12'],
'dprep': ['azureml-dataprep>=1.1.33'],
'utils': ['graphviz', 'imageio'],
},

Expand Down
2 changes: 1 addition & 1 deletion src/python/setup.py.in
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ setup(
'nose>=1.3', 'pytest>=4.4.0',
'graphviz', 'imageio',
],
'dprep': ['azureml-dataprep>=1.1.12'],
'dprep': ['azureml-dataprep>=1.1.33'],
'utils': ['graphviz', 'imageio'],
},

Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.6.0
1.6.1