Skip to content

Commit cf9d147

Browse files
authored
Updating onnxmltools package version and requirements to 1.5.0 (#315)
* Updating onnxmltools package version and requirements * Update flaky test onnxruntime version
1 parent 0f82e52 commit cf9d147

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

onnxmltools/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
This framework converts any machine learned model into onnx format
1010
which is a common language to describe any machine learned model.
1111
"""
12-
__version__ = "1.4.1"
12+
__version__ = "1.5.0"
1313
__author__ = "Microsoft"
1414
__producer__ = "OnnxMLTools"
1515
__producer_version__ = __version__

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ protobuf
44
onnx
55
skl2onnx
66
keras2onnx
7-
onnxconverter-common>=1.4.0
7+
onnxconverter-common>=1.5.0

tests/svmlib/test_SVMConverters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def test_convert_svmc_linear(self):
121121
self.assertTrue(node is not None)
122122
dump_data_and_model(X[:5].astype(numpy.float32), SkAPIClProba2(libsvm_model), node,
123123
basename="LibSvmSvmcLinear-Dec3",
124-
allow_failure="StrictVersion(onnxruntime.__version__) <= StrictVersion('0.3.0')")
124+
allow_failure="StrictVersion(onnxruntime.__version__) < StrictVersion('0.5.0')")
125125

126126
def test_convert_svmc(self):
127127
iris = load_iris()

0 commit comments

Comments
 (0)