Skip to content

Commit

Permalink
Updating onnxmltools package version and requirements to 1.5.0 (#315)
Browse files Browse the repository at this point in the history
* Updating onnxmltools package version and requirements

* Update flaky test onnxruntime version
  • Loading branch information
vinitra authored Jun 11, 2019
1 parent 0f82e52 commit cf9d147
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion onnxmltools/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
This framework converts any machine learned model into onnx format
which is a common language to describe any machine learned model.
"""
__version__ = "1.4.1"
__version__ = "1.5.0"
__author__ = "Microsoft"
__producer__ = "OnnxMLTools"
__producer_version__ = __version__
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@ protobuf
onnx
skl2onnx
keras2onnx
onnxconverter-common>=1.4.0
onnxconverter-common>=1.5.0
2 changes: 1 addition & 1 deletion tests/svmlib/test_SVMConverters.py
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ def test_convert_svmc_linear(self):
self.assertTrue(node is not None)
dump_data_and_model(X[:5].astype(numpy.float32), SkAPIClProba2(libsvm_model), node,
basename="LibSvmSvmcLinear-Dec3",
allow_failure="StrictVersion(onnxruntime.__version__) <= StrictVersion('0.3.0')")
allow_failure="StrictVersion(onnxruntime.__version__) < StrictVersion('0.5.0')")

def test_convert_svmc(self):
iris = load_iris()
Expand Down

0 comments on commit cf9d147

Please sign in to comment.