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

Commit

Permalink
Update package references to work with the latest versions from nuget…
Browse files Browse the repository at this point in the history
….org. (#353)

* Update ML.Net package references to work with RC1

* Update to ML.Net 1.4.0

* Update Microsoft.DataPrep to version 0.0.2.19-preview.

* Downgrade Microsoft.DataPrep to version 0.0.2.3-preview due to issue with missing SqlJdbc package.

* Update nimbusml version to 1.6.0.
  • Loading branch information
pieths authored Nov 7, 2019
1 parent c387908 commit ce8217b
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 29 deletions.
26 changes: 13 additions & 13 deletions src/DotNetBridge/DotNetBridge.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -32,19 +32,19 @@
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.ML" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.CpuMath" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.EntryPoints" Version="0.16.0-preview2" />
<PackageReference Include="Microsoft.ML.Mkl.Components" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.ImageAnalytics" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.LightGBM" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.OnnxTransformer" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.TensorFlow" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.Dnn" Version="0.16.0-preview2" />
<PackageReference Include="Microsoft.ML.Ensemble" Version="0.16.0-preview2" />
<PackageReference Include="Microsoft.ML.TimeSeries" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.DataPrep" Version="0.0.1.12-preview" />
<PackageReference Include="TensorFlow.NET" Version="0.11.3" />
<PackageReference Include="Microsoft.ML" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.CpuMath" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.EntryPoints" Version="0.16.0" />
<PackageReference Include="Microsoft.ML.Mkl.Components" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.ImageAnalytics" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.LightGBM" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.OnnxTransformer" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.TensorFlow" Version="1.4.0" />
<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.2.3-preview" />
<PackageReference Include="TensorFlow.NET" Version="0.11.8.1" />
<PackageReference Include="SciSharp.TensorFlow.Redist" Version="1.14.0" />
</ItemGroup>
</Project>
26 changes: 13 additions & 13 deletions src/Platforms/build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,19 +11,19 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.ML" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.CpuMath" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.EntryPoints" Version="0.16.0-preview2" />
<PackageReference Include="Microsoft.ML.Mkl.Components" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.ImageAnalytics" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.LightGBM" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.OnnxTransformer" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.TensorFlow" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.ML.Dnn" Version="0.16.0-preview2" />
<PackageReference Include="Microsoft.ML.Ensemble" Version="0.16.0-preview2" />
<PackageReference Include="Microsoft.ML.TimeSeries" Version="1.4.0-preview2" />
<PackageReference Include="Microsoft.DataPrep" Version="0.0.1.12-preview" />
<PackageReference Include="TensorFlow.NET" Version="0.11.3" />
<PackageReference Include="Microsoft.ML" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.CpuMath" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.EntryPoints" Version="0.16.0" />
<PackageReference Include="Microsoft.ML.Mkl.Components" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.ImageAnalytics" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.LightGBM" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.OnnxTransformer" Version="1.4.0" />
<PackageReference Include="Microsoft.ML.TensorFlow" Version="1.4.0" />
<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.2.3-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.5.0'
__version__ = '1.6.0'

# CoreCLR version of MicrosoftML is built on Windows.
# But file permissions are not preserved when it's copied to Linux.
Expand Down
2 changes: 1 addition & 1 deletion 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.5.0',
version='1.6.0',

description='NimbusML',
long_description=long_description,
Expand Down
2 changes: 1 addition & 1 deletion version.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.5.0
1.6.0

0 comments on commit ce8217b

Please sign in to comment.